diff options
author | Hamish Moffatt <hamish@cloud.net.au> | 2008-03-18 00:20:24 +0000 |
---|---|---|
committer | Hamish Moffatt <hamish@cloud.net.au> | 2008-03-18 00:20:24 +0000 |
commit | aa73d1753056b5abb806c0e10f99672c60599c5c (patch) | |
tree | d25fe9c3db16fb21d9fee8eb10c87586f0483e55 /package/lighttpd | |
parent | d97812e3a5ac419ff30bd23e74f555997aeac904 (diff) | |
download | buildroot-novena-aa73d1753056b5abb806c0e10f99672c60599c5c.tar.gz buildroot-novena-aa73d1753056b5abb806c0e10f99672c60599c5c.zip |
Don't use long options to start-stop-daemon as they may be disabled in the busybox configuration
Diffstat (limited to 'package/lighttpd')
-rw-r--r-- | package/lighttpd/rc.lighttpd | 4 |
1 files changed, 2 insertions, 2 deletions
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() { |