[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r17236: {tor} remove all trace from the various contrib/ scripts that tor (tor/trunk/contrib)
Author: arma
Date: 2008-11-10 10:40:15 -0500 (Mon, 10 Nov 2008)
New Revision: 17236
Modified:
tor/trunk/contrib/linux-tor-prio.sh
tor/trunk/contrib/rc.subr
tor/trunk/contrib/tor.sh.in
tor/trunk/contrib/torctl.in
Log:
remove all trace from the various contrib/ scripts that tor used
to have a 'group' option.
Modified: tor/trunk/contrib/linux-tor-prio.sh
===================================================================
--- tor/trunk/contrib/linux-tor-prio.sh 2008-11-10 09:18:19 UTC (rev 17235)
+++ tor/trunk/contrib/linux-tor-prio.sh 2008-11-10 15:40:15 UTC (rev 17236)
@@ -9,8 +9,8 @@
# This script provides prioritization of Tor traffic below other
# traffic on a Linux server. It has two modes of operation: UID based
# and IP based. The UID based method requires that Tor be launched from
-# a specific user ID. The "User" and "Group" Tor config settings are
-# insufficient, as they set the UID after the socket is created.
+# a specific user ID. The "User" Tor config setting is
+# insufficient, as it sets the UID after the socket is created.
# Here is a three line C wrapper you can use to execute Tor and drop
# privs to UID 501 before it creates any sockets. Change the UID
# to the UID for your tor server user, and compile with
@@ -49,7 +49,7 @@
DEV=eth0
-# NOTE! You must START Tor under this UID. Using the Tor User/Group
+# NOTE! You must START Tor under this UID. Using the Tor User
# config setting is NOT sufficient.
TOR_UID=$(id -u tor)
Modified: tor/trunk/contrib/rc.subr
===================================================================
--- tor/trunk/contrib/rc.subr 2008-11-10 09:18:19 UTC (rev 17235)
+++ tor/trunk/contrib/rc.subr 2008-11-10 15:40:15 UTC (rev 17236)
@@ -14,7 +14,6 @@
# tor_conf (str): Points to your tor conf file
# Default: /usr/local/etc/tor/torrc
# tor_user (str): Tor Daemon user. Default _tor
-# tor_groupr (str): Tor Daemon group. Default _tor
#
. /etc/rc.subr
@@ -27,7 +26,6 @@
: ${tor_enable="NO"}
: ${tor_conf="/usr/local/etc/tor/torrc"}
: ${tor_user="_tor"}
-: ${tor_group="_tor"}
: ${tor_pidfile="/var/run/tor/tor.pid"}
: ${tor_logfile="/var/log/tor"}
: ${tor_datadir="/var/run/tor"}
@@ -35,7 +33,7 @@
required_files=${tor_conf}
required_dirs=${tor_datadir}
command="/usr/local/bin/${name}"
-command_args="-f ${tor_conf} --pidfile ${tor_pidfile} --runasdaemon 1 --datadirectory ${tor_datadir} --user ${tor_user} --group ${tor_group}"
+command_args="-f ${tor_conf} --pidfile ${tor_pidfile} --runasdaemon 1 --datadirectory ${tor_datadir} --user ${tor_user}"
extra_commands="log"
log_cmd="${name}_log"
Modified: tor/trunk/contrib/tor.sh.in
===================================================================
--- tor/trunk/contrib/tor.sh.in 2008-11-10 09:18:19 UTC (rev 17235)
+++ tor/trunk/contrib/tor.sh.in 2008-11-10 15:40:15 UTC (rev 17236)
@@ -31,8 +31,6 @@
# torctl will use these environment variables
TORUSER=@TORUSER@
export TORUSER
-TORGROUP=@TORGROUP@
-export TORGROUP
if [ -x /bin/su ] ; then
SUPROG=/bin/su
Modified: tor/trunk/contrib/torctl.in
===================================================================
--- tor/trunk/contrib/torctl.in 2008-11-10 09:18:19 UTC (rev 17235)
+++ tor/trunk/contrib/torctl.in 2008-11-10 15:40:15 UTC (rev 17236)
@@ -41,22 +41,18 @@
TORARGS="--pidfile $PIDFILE --log \"notice file $LOGFILE\" --runasdaemon 1"
TORARGS="$TORARGS --datadirectory $TORDATA"
-# If user and group names are set in the environment, then use them;
+# If user name is set in the environment, then use it;
# otherwise run as the invoking user (or whatever user the config
# file says)... unless the invoking user is root. The idea here is to
# let an unprivileged user run tor for her own use using this script,
# while still providing for it to be used as a system daemon.
if [ "x`id -u`" = "x0" ]; then
TORUSER=@TORUSER@
- TORGROUP=@TORGROUP@
fi
if [ "x$TORUSER" != "x" ]; then
TORARGS="$TORARGS --user $TORUSER"
fi
-if [ "x$TORGROUP" != "x" ]; then
- TORARGS="$TORARGS --group $TORGROUP"
-fi
# We no longer wrap the Tor daemon startup in an su when running as
# root, because it's too painful to make the use of su portable.