+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)
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
}