blob: a45a018e055ffe05b7233e1578850b0cd02a9902 (
plain)
1 #!/bin/sh
2 #
3 # /etc/rc.d/lighttpd: start/stop lighttpd daemon
4 #
5
6 case $1 in
7 start)
8 /usr/sbin/lighttpd -f /etc/lighttpd.conf
9 ;;
10 stop)
11 kill `cat /var/run/lighttpd.pid`
12 ;;
13 restart)
14 $0 stop
15 sleep 2
16 $0 start
17 ;;
18 *)
19 echo "usage: $0 [start|stop|restart]"
20 ;;
21 esac
22
23 # End of file
|