add support for -t 0 (infinite retry) in busybox udhcpc and use it in the network...
[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 }
This page took 0.043525 seconds and 5 git commands to generate.