Append to logfile instead of overwriting

Change-Id: I7e79382ac13f1d40af379b7e1b64310bec6d384c
This commit is contained in:
Spencer Krum 2016-01-05 15:45:50 -08:00
parent 688aed48d3
commit ef64c1a46a
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ start () {
echo -n "Start $NAME"
$SSD --start --pidfile $PID --make-pidfile -u $USER -g $GROUP \
-d $HOUND_HOME --background \
--startas /bin/bash -- -c "exec $CMD_DIR/$CMD >$LOG_FILE 2>&1"
--startas /bin/bash -- -c "exec $CMD_DIR/$CMD >>$LOG_FILE 2>&1"
RETVAL=$?
echo
return $RETVAL