fix issues with multiple ppp links (noticed by Stefano Rivera)
[openwrt.git] / package / busybox / files / httpd
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006 OpenWrt.org
3 START=50
4
5 start() {
6 include /lib/network
7 scan_interfaces
8 config_get ifname wan hostname
9 [ -d /www ] && httpd -p 80 -h /www -r ${hostname:-OpenWrt}
10 }
11
12 stop() {
13 killall httpd
14 }
This page took 0.047636 seconds and 5 git commands to generate.