cleanup init.d

This commit is contained in:
j 2011-02-23 13:41:43 +01:00
parent 7c74cd8b01
commit 9bf008c227
2 changed files with 3 additions and 3 deletions

View File

@ -47,10 +47,10 @@ do_start()
# 1 if daemon was already running
# 2 if daemon could not be started
test -e /var/log/pandora || (mkdir -p /var/log/pandora && chown $DAEMON_USER:$DAEMON_USER /var/log/pandora)
start-stop-daemon --start --quiet --pidfile $PIDFILE -c $DAEMON_USER \
start-stop-daemon --start --quiet --pidfile $PIDFILE -c $DAEMON_USER \
--exec $DAEMON --test > /dev/null \
|| return 1
start-stop-daemon --start --quiet --pidfile $PIDFILE -c $DAEMON_USER -startas $DAEMON \
start-stop-daemon --start --quiet --pidfile $PIDFILE -c $DAEMON_USER --startas $DAEMON \
--make-pidfile --background --exec $DAEMON -- $DAEMON_ARGS \
|| return 2
}

View File

@ -50,7 +50,7 @@ do_start()
start-stop-daemon --start --quiet --pidfile $PIDFILE -c $DAEMON_USER \
--exec $DAEMON --test > /dev/null \
|| return 1
start-stop-daemon --start --quiet --pidfile $PIDFILE -c $DAEMON_USER \
start-stop-daemon --start --quiet --pidfile $PIDFILE -c $DAEMON_USER --startas $DAEMON \
--make-pidfile --background --exec $DAEMON -- $DAEMON_ARGS \
|| return 2
}