summaryrefslogtreecommitdiff
path: root/security/tor-devel/files/patch-contrib-tor.sh.in
diff options
context:
space:
mode:
Diffstat (limited to 'security/tor-devel/files/patch-contrib-tor.sh.in')
-rw-r--r--security/tor-devel/files/patch-contrib-tor.sh.in16
1 files changed, 3 insertions, 13 deletions
diff --git a/security/tor-devel/files/patch-contrib-tor.sh.in b/security/tor-devel/files/patch-contrib-tor.sh.in
index 74fa8978a719..ebf4e9359cbd 100644
--- a/security/tor-devel/files/patch-contrib-tor.sh.in
+++ b/security/tor-devel/files/patch-contrib-tor.sh.in
@@ -1,5 +1,5 @@
---- contrib/tor.sh.in.orig Sat Jan 29 20:41:19 2005
-+++ contrib/tor.sh.in Sat Jan 29 20:46:14 2005
+--- contrib/tor.sh.in.orig Sat Jun 18 13:27:28 2005
++++ contrib/tor.sh.in Sat Jun 18 13:29:00 2005
@@ -5,12 +5,12 @@
# chkconfig: 2345 90 10
# description: Onion Router
@@ -9,21 +9,11 @@
+TORUSER=_tor
+TORGROUP=_tor
TORBIN=@BINDIR@/tor
--TORPID=@LOCALSTATEDIR@/run/tor/tor.pid
+ TORPID=@LOCALSTATEDIR@/run/tor/tor.pid
-TORLOG=@LOCALSTATEDIR@/log/tor/tor.log
-TORDATA=@LOCALSTATEDIR@/lib/tor
-+TORPID=/var/run/tor.pid
+TORLOG=/var/log/tor.log
+TORDATA=/var/db/tor/data
TORCONF=@CONFDIR@/torrc
# Strictly speaking, we don't need to su if we have --user and --group.
-@@ -36,7 +36,7 @@
- if [ "x$TORUSER" = "x" ]; then
- $TORBIN -f $TORCONF $TORARGS
- else
-- /bin/su -c "$TORBIN -f $TORCONF $TORARGS" $TORUSER
-+ /usr/bin/su $TORUSER -c "$TORBIN -f $TORCONF $TORARGS"
- fi
- RETVAL=$?
- if [ $RETVAL -eq 0 ]; then