3 echo "==> Tor has been preconfigured to run as a client only"
4 echo "==> Tor is experimental software, Do not rely on it for strong anonymity."
6 echo "==> Development version of Tor has following new features and are enabled by default:"
8 echo "==> - transparant proxy support"
9 echo "==> - 'torified' DNS server to make DNS queries anonymously"
11 echo "==> See https://wiki.torproject.org/noreply/TheOnionRouter/TransparentProxy"
12 echo "==> for more info about transparent traffic routing through Tor"
15 if [ ! `grep '^tor:' /etc/group` ]; then
16 groupadd -g 43 tor &>/dev/null;
19 id tor &>/dev/null || \
20 useradd -u 43 -g 43 -d /var/lib/tor -s /bin/false tor
22 install -D -d -o43 -g43 -m0700 /var/log/tor
26 userdel tor &> /dev/null
27 groupdel tor &> /dev/null
32 echo "==> To clean up after Tor (Subversion) uninstallation"
33 echo "==> delete manually following directories:"
36 echo "==> /var/lib/tor"
37 echo "==> /var/log/tor"