mirror of
https://github.com/RoboSats/robosats-deploy.git
synced 2025-08-10 03:50:10 +00:00
9 lines
154 B
Bash
Executable File
9 lines
154 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
# Create torrc if it doesn't exist
|
|
if [ ! -f "/etc/tor/torrc" ]; then
|
|
cp /tmp/torrc /etc/tor/torrc
|
|
fi
|
|
|
|
exec sudo -u tor /usr/bin/tor |