Make sure the logfile exists and has the correct permissions.

svn:r9941
This commit is contained in:
Andrew Lewman 2007-04-11 00:42:49 +00:00
parent 51e4b8d706
commit 197745f285

View file

@ -30,9 +30,13 @@ fi
chown $TORUSER $TORDIR
chgrp daemon $TORDIR
chmod 700 $TORDIR
chown $TORUSER $LOGFILE
chgrp daemon $LOGFILE
chmod 660 $LOGFILE
if [ ! -f $LOGFILE ]; then
touch $LOGFILE
chown $TORUSER $LOGFILE
chgrp daemon $LOGFILE
chmod 660 $LOGFILE
fi
# Create the configuration file only if there wasn't one already.
if [ ! -f $TARGET/torrc ]; then