8 lines
104 B
Bash
8 lines
104 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ "$(whoami)" != "root" ]; then
|
||
|
tor -f /etc/tor/torrc
|
||
|
else
|
||
|
service tor start
|
||
|
fi
|