2006-02-23 15:26:10 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2006-12-02 10:06:41 +01:00
|
|
|
# /etc/rc.d/httpd: start/stop webfs http daemon
|
2006-02-23 15:26:10 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
case $1 in
|
|
|
|
start)
|
2006-12-02 10:06:41 +01:00
|
|
|
/usr/bin/webfsd -u www -g www -r /var/www -p 80 -f index.html
|
2006-02-23 15:26:10 +00:00
|
|
|
;;
|
|
|
|
stop)
|
|
|
|
killall -q /usr/bin/webfsd
|
|
|
|
;;
|
|
|
|
restart)
|
|
|
|
$0 stop
|
|
|
|
sleep 2
|
|
|
|
$0 start
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "usage: $0 [start|stop|restart]"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# End of file
|