24 lines
293 B
Bash
Executable File
24 lines
293 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# /etc/rc.d/httpd: start/stop http daemon
|
|
#
|
|
|
|
case $1 in
|
|
start)
|
|
/usr/bin/webfsd -u nobody -g nobody -r /var/www -p 80 -f index.html
|
|
;;
|
|
stop)
|
|
killall -q /usr/bin/webfsd
|
|
;;
|
|
restart)
|
|
$0 stop
|
|
sleep 2
|
|
$0 start
|
|
;;
|
|
*)
|
|
echo "usage: $0 [start|stop|restart]"
|
|
;;
|
|
esac
|
|
|
|
# End of file
|