diff options
author | Roger Dingledine <arma@torproject.org> | 2008-11-10 15:40:15 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2008-11-10 15:40:15 +0000 |
commit | 00e3d7b4a91092c75a7ea1d032a331be470c1432 (patch) | |
tree | d55de218d0815d13b0573e5af57596c7ea7a8135 /contrib/rc.subr | |
parent | fea2bd4ac16d76fdc5cb3208d9041297c705fef7 (diff) | |
download | tor-00e3d7b4a91092c75a7ea1d032a331be470c1432.tar.gz tor-00e3d7b4a91092c75a7ea1d032a331be470c1432.zip |
remove all trace from the various contrib/ scripts that tor used
to have a 'group' option.
svn:r17236
Diffstat (limited to 'contrib/rc.subr')
-rw-r--r-- | contrib/rc.subr | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/contrib/rc.subr b/contrib/rc.subr index 8852b60466..117ae71d47 100644 --- a/contrib/rc.subr +++ b/contrib/rc.subr @@ -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 @@ load_rc_config ${name} : ${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 @@ load_rc_config ${name} 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" |