From aa73d1753056b5abb806c0e10f99672c60599c5c Mon Sep 17 00:00:00 2001 From: Hamish Moffatt Date: Tue, 18 Mar 2008 00:20:24 +0000 Subject: Don't use long options to start-stop-daemon as they may be disabled in the busybox configuration --- package/lighttpd/rc.lighttpd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'package/lighttpd') diff --git a/package/lighttpd/rc.lighttpd b/package/lighttpd/rc.lighttpd index 837e074e8..f76c38211 100644 --- a/package/lighttpd/rc.lighttpd +++ b/package/lighttpd/rc.lighttpd @@ -7,12 +7,12 @@ umask 077 start() { echo -n "Starting lighttpd: " - start-stop-daemon --start --quiet --make-pidfile --pidfile /var/run/lighttpd.pid -b --exec /usr/sbin/lighttpd -- -f /etc/lighttpd/lighttpd.conf -D + start-stop-daemon -S -q -m -p /var/run/lighttpd.pid -b -x /usr/sbin/lighttpd -- -f /etc/lighttpd/lighttpd.conf -D echo "OK" } stop() { echo -n "Stopping lighttpd: " - start-stop-daemon --stop --quiet --pidfile /var/run/lighttpd.pid + start-stop-daemon -K -q -p /var/run/lighttpd.pid echo "OK" } restart() { -- cgit v1.2.3-55-g7522