From: Chris Lawrence Date: Tue, 31 Oct 2006 01:08:26 +0000 (-0600) Subject: lsb 3.1-19 Debian release. X-Git-Tag: archive/raspbian/10.2018112800+rpi1^2~233 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=6f5fe99fb040e30d111c3bd801b511153081ab2f;p=lsb.git lsb 3.1-19 Debian release. --- 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 }