mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-26 06:34:05 +02:00
don't load config files in failsafe mode
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1750 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
b0cb433572
commit
db684723c4
@ -1,6 +1,6 @@
|
||||
#!/bin/sh
|
||||
. /etc/functions.sh
|
||||
[ -e /etc/config/network ] && . /etc/config/network
|
||||
[ "$FAILSAFE" != "true" -a -e /etc/config/network ] && . /etc/config/network
|
||||
case "$1" in
|
||||
start|restart)
|
||||
ifup lan
|
||||
|
@ -5,7 +5,7 @@ ${FAILSAFE:+exit}
|
||||
|
||||
. /etc/functions.sh
|
||||
. /etc/network.overrides
|
||||
[ -e /etc/config/network ] && . /etc/config/network
|
||||
[ "$FAILSAFE" != "true" -a -e /etc/config/network ] && . /etc/config/network
|
||||
|
||||
WAN=$(nvram get wan_ifname)
|
||||
LAN=$(nvram get lan_ifname)
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/bin/sh
|
||||
. /etc/functions.sh
|
||||
. /etc/network.overrides
|
||||
[ -e /etc/config/network] && . /etc/config/network
|
||||
[ "$FAILSAFE" != "true" -a -e /etc/config/network ] && . /etc/config/network
|
||||
|
||||
# interface to use for DHCP
|
||||
iface=lan
|
||||
|
@ -2,7 +2,7 @@
|
||||
[ $# = 0 ] && { echo " $0 <group>"; exit; }
|
||||
. /etc/functions.sh
|
||||
. /etc/network.overrides
|
||||
[ -e /etc/config/network ] && . /etc/config/network
|
||||
[ "$FAILSAFE" != "true" -a -e /etc/config/network ] && . /etc/config/network
|
||||
type=$1
|
||||
debug "### ifdown $type ###"
|
||||
if=$(nvram get ${type}_ifname)
|
||||
|
@ -2,7 +2,7 @@
|
||||
[ $# = 0 ] && { echo " $0 <group>"; exit; }
|
||||
. /etc/functions.sh
|
||||
. /etc/network.overrides
|
||||
[ -e /etc/config/network ] && . /etc/config/network
|
||||
[ "$FAILSAFE" != "true" -a -e /etc/config/network ] && . /etc/config/network
|
||||
|
||||
type=$1
|
||||
debug "### ifup $type ###"
|
||||
|
Loading…
Reference in New Issue
Block a user