1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-16 10:55:40 +03:00
openwrt-xburst/package/busybox/files/httpd

15 lines
245 B
Plaintext
Raw Normal View History

#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
START=50
start() {
include /lib/network
scan_interfaces
config_get ifname wan hostname
[ -d /www ] && httpd -p 80 -h /www -r ${hostname:-OpenWrt}
}
stop() {
killall httpd
}