diff options
Diffstat (limited to 'package/lighttpd/rc.lighttpd')
-rw-r--r-- | package/lighttpd/rc.lighttpd | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/package/lighttpd/rc.lighttpd b/package/lighttpd/rc.lighttpd deleted file mode 100644 index f76c38211..000000000 --- a/package/lighttpd/rc.lighttpd +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Starts lighttpd -# - -umask 077 - -start() { - echo -n "Starting lighttpd: " - 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 -K -q -p /var/run/lighttpd.pid - echo "OK" -} -restart() { - stop - start -} - -case "$1" in - start) - start - ;; - stop) - stop - ;; - restart|reload) - restart - ;; - *) - echo "Usage: $0 {start|stop|restart}" - exit 1 -esac - -exit $? - |