don't use --background in init scripts as the daemons daemonize themselves

This commit is contained in:
marschap
2006-10-06 11:42:49 +00:00
parent ecfb8caef1
commit c599015d9c
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ set -e
case "$1" in
start)
echo -n "Starting $DESC: "
start-stop-daemon --start --quiet --background \
start-stop-daemon --start --quiet \
--exec $DAEMON -- $OPTIONS
echo "$NAME."
;;