contrib/thttpd/thttpd.rc
2008-12-11 05:12:29 +11:00

24 lines
276 B
Bash
Executable File

#!/bin/sh
#
# /etc/rc.d/thttpd: start/stop thttpd daemon
#
case $1 in
start)
/usr/sbin/thttpd -C /etc/thttpd.conf
;;
stop)
killall -q /usr/sbin/thttpd
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file