lsb 3.1-19 Debian release.
authorChris Lawrence <lawrencc@debian.org>
Tue, 31 Oct 2006 01:08:26 +0000 (19:08 -0600)
committerDidier Raboud <odyx@debian.org>
Tue, 31 Oct 2006 01:08:26 +0000 (19:08 -0600)
debian/changelog
init-functions

index 65097823fd375991ba8e8dd2374a395f773bdb3e..e5aef4c70d83f6182b229ca072854e0074d33c82 100644 (file)
@@ -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 <lawrencc@debian.org>  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)
index 8bc1783adcf769fd3fd989f87265c6c99b379ba5..89de3097bef984b5878821563501e6c8296a2cb0 100644 (file)
@@ -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
 }