move busybox init scripts from base-files into the busybox package and make them...
[openwrt/svn-archive/archive.git] / package / busybox / files / 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 }