contrib/lighttpd/lighttpd.rc

25 lines
316 B
Plaintext
Raw Normal View History

2009-01-14 22:04:18 +01:00
#!/bin/sh
#
# /etc/rc.d/lighttpd: start/stop lighttpd daemon
#
case $1 in
start)
2009-02-17 20:22:23 +01:00
/usr/sbin/lighttpd -f /etc/lighttpd.conf
;;
2009-01-14 22:04:18 +01:00
stop)
2010-02-09 00:23:00 +01:00
rm -f /var/run/lighttpd.pid
killall -q /usr/sbin/lighttpd
2009-02-17 20:22:23 +01:00
;;
2009-01-14 22:04:18 +01:00
restart)
2009-02-17 20:22:23 +01:00
$0 stop
sleep 2
$0 start
;;
2009-01-14 22:04:18 +01:00
*)
2009-02-17 20:22:23 +01:00
echo "usage: $0 [start|stop|restart]"
;;
2009-01-14 22:04:18 +01:00
esac
# End of file