CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
pango: updated to 1.24.5 and fixed issues with autofolks stuff. Also updated the...
[attic/ports/opt-cross.git] / webfs / webfsd
CommitLineData
543bc107
JB
1#!/bin/sh
2#
3# /etc/rc.d/httpd: start/stop webfs http daemon
4#
5
6case $1 in
7start)
8 /usr/bin/webfsd -u www -g www -r /var/www -p 80 -f index.html
9 ;;
10stop)
11 killall -q /usr/bin/webfsd
12 ;;
13restart)
14 $0 stop
15 sleep 2
16 $0 start
17 ;;
18*)
19 echo "usage: $0 [start|stop|restart]"
20 ;;
21esac
22
23# End of file