From c599015d9ca65252d9418c08ed855355fb6c9b73 Mon Sep 17 00:00:00 2001 From: marschap Date: Fri, 6 Oct 2006 11:42:49 +0000 Subject: [PATCH] don't use --background in init scripts as the daemons daemonize themselves --- scripts/debian/lcdproc.LCDd.init | 2 +- scripts/debian/lcdproc.init | 2 +- scripts/debian/lcdproc.lcdexec.init | 2 +- scripts/debian/lcdproc.lcdvc.init | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/debian/lcdproc.LCDd.init b/scripts/debian/lcdproc.LCDd.init index e6af26a..5911bf5 100644 --- a/scripts/debian/lcdproc.LCDd.init +++ b/scripts/debian/lcdproc.LCDd.init @@ -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." ;; diff --git a/scripts/debian/lcdproc.init b/scripts/debian/lcdproc.init index a74bcc9..f77a8f1 100644 --- a/scripts/debian/lcdproc.init +++ b/scripts/debian/lcdproc.init @@ -26,7 +26,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." ;; diff --git a/scripts/debian/lcdproc.lcdexec.init b/scripts/debian/lcdproc.lcdexec.init index a3e978b..86f400d 100644 --- a/scripts/debian/lcdproc.lcdexec.init +++ b/scripts/debian/lcdproc.lcdexec.init @@ -26,7 +26,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." ;; diff --git a/scripts/debian/lcdproc.lcdvc.init b/scripts/debian/lcdproc.lcdvc.init index f27417c..a4d8e3c 100644 --- a/scripts/debian/lcdproc.lcdvc.init +++ b/scripts/debian/lcdproc.lcdvc.init @@ -26,7 +26,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." ;;