From 6f5fe99fb040e30d111c3bd801b511153081ab2f Mon Sep 17 00:00:00 2001 From: Chris Lawrence Date: Mon, 30 Oct 2006 19:08:26 -0600 Subject: [PATCH] lsb 3.1-19 Debian release. --- debian/changelog | 7 +++++++ init-functions | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 6509782..e5aef4c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +lsb (3.1-19) unstable; urgency=low + + * Now try the eval hack in start-stop-daemon, since nothing else seems + to work. (Closes: #388836) + + -- Chris Lawrence Mon, 30 Oct 2006 19:08:26 -0600 + lsb (3.1-18) unstable; urgency=low * etch will be Debian 4.0, not Debian 3.2. (Closes: #395004) diff --git a/init-functions b/init-functions index 8bc1783..89de309 100644 --- a/init-functions +++ b/init-functions @@ -48,11 +48,11 @@ start_daemon () { exec="$1"; shift if [ $force = 1 ]; then - /sbin/start-stop-daemon --start --nicelevel $nice --quiet --startas $exec --pidfile /dev/null --oknodo -- $@ + eval /sbin/start-stop-daemon --start --nicelevel $nice --quiet --startas $exec --pidfile /dev/null --oknodo -- "$@" elif [ $pidfile ]; then - /sbin/start-stop-daemon --start --nicelevel $nice --quiet --exec $exec --oknodo --pidfile "$pidfile" -- $@ + eval /sbin/start-stop-daemon --start --nicelevel $nice --quiet --exec $exec --oknodo --pidfile "$pidfile" -- "$@" else - /sbin/start-stop-daemon --start --nicelevel $nice --quiet --exec $exec --oknodo -- $@ + eval /sbin/start-stop-daemon --start --nicelevel $nice --quiet --exec $exec --oknodo -- "$@" fi } -- 2.30.2