e4f5f48e9cb966a7228ca4fc4fbd8a7be1c08e18
[openwrt-10.03/.git] / package / base-files / default / etc / init.d / httpd
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006 OpenWrt.org
3
4 start() {
5         include /lib/network
6         scan_interfaces
7         config_get ifname wan hostname
8         [ -d /www ] && httpd -p 80 -h /www -r ${hostname:-OpenWrt}
9 }
10
11 stop() {
12         killall httpd
13 }