Change httpd realm to match the hostname (#932)

SVN-Revision: 5464
This commit is contained in:
Florian Fainelli 2006-11-07 16:37:09 +00:00
parent b4d550ad84
commit 0b1e4d027a

View file

@ -2,7 +2,10 @@
# Copyright (C) 2006 OpenWrt.org # Copyright (C) 2006 OpenWrt.org
start() { start() {
[ -d /www ] && httpd -p 80 -h /www -r OpenWrt include /lib/network
scan_interfaces
config_get ifname wan hostname
[ -d /www ] && httpd -p 80 -h /www -r ${hostname:-OpenWrt}
} }
stop() { stop() {