finally move buildroot-ng to trunk
[openwrt.git] / package / base-files / default / etc / init.d / S50httpd
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006 OpenWrt.org
3
4 start() {
5         [ -d /www ] && httpd -p 80 -h /www -r OpenWrt
6 }
7
8 stop() {
9         killall httpd
10 }