2 echo "-> Tor has been preconfigured to run as a client only"
3 echo "-> Tor is experimental software, Do not rely on it for strong anonymity."
4 if [ ! `grep '^tor:' /etc/group` ]; then
5 groupadd -g 43 tor &>/dev/null;
8 id tor &>/dev/null || \
9 useradd -u 43 -g tor -d /var/lib/tor -s /bin/false tor
17 userdel tor &> /dev/null
18 groupdel tor &> /dev/null
29 # vim: ts=2 sw=2 et ft=sh