From: Nick Mathewson Date: Fri, 18 Mar 2005 21:58:52 +0000 (+0000) Subject: Make OS X package actually try to log things to the nice log directory we gave it. X-Git-Tag: tor-0.1.0.1-rc~119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71c7733154a4ee004a49f0de4e378c3a52cf377f;p=thirdparty%2Ftor.git Make OS X package actually try to log things to the nice log directory we gave it. svn:r3776 --- diff --git a/contrib/osx/Tor b/contrib/osx/Tor index 0752b85c58..ba2b1418d0 100755 --- a/contrib/osx/Tor +++ b/contrib/osx/Tor @@ -6,6 +6,7 @@ TORPID=/var/run/Tor.pid TORUSER=_tor TORGROUP=daemon TORCMD=/Library/Tor/tor +TORLOG=/var/log/tor/tor.log ## # Tor Service @@ -24,7 +25,7 @@ StartService () # Tentative # Making sure it is not running (I know it is not a best approarch) killall tor 2>/dev/null - $TORCMD -f $TORCONF --runasdaemon 1 --pidfile $TORPID --datadirectory $TORDIR --user $TORUSER --group $TORGROUP & + $TORCMD -f $TORCONF --runasdaemon 1 --pidfile $TORPID --datadirectory $TORDIR --user $TORUSER --group $TORGROUP --log "notice file $TORLOG" & fi fi }