add INSTALL_BIN, INSTALL_DIR, INSTALL_DATA variables
[openwrt/openwrt.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 }