From 6452ee886f06b5b48e887bcec28e303563e83e14 Mon Sep 17 00:00:00 2001 From: Ulf Samuelsson Date: Sat, 11 Aug 2007 23:35:07 +0000 Subject: Use a valid script file for lighttpd in target --- package/lighttpd/rc.lighttpd | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 package/lighttpd/rc.lighttpd (limited to 'package/lighttpd/rc.lighttpd') diff --git a/package/lighttpd/rc.lighttpd b/package/lighttpd/rc.lighttpd new file mode 100644 index 000000000..837e074e8 --- /dev/null +++ b/package/lighttpd/rc.lighttpd @@ -0,0 +1,39 @@ +#!/bin/sh +# +# Starts lighttpd +# + +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 + echo "OK" +} +stop() { + echo -n "Stopping lighttpd: " + start-stop-daemon --stop --quiet --pidfile /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 $? + -- cgit v1.2.3