contrib/lighttpd/lighttpd.rc
2009-02-17 20:22:23 +01:00

27 lines
368 B
Bash
Executable File

#!/bin/sh
#
# /etc/rc.d/lighttpd: start/stop lighttpd daemon
#
case $1 in
start)
/usr/sbin/lighttpd -f /etc/lighttpd.conf
;;
stop)
if [ -f /var/run/lighttpd.pid ]; then
kill `cat /var/run/lighttpd.pid`
rm -f /var/run/lighttpd.pid
fi
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file