diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-08-25 11:57:56 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-08-25 11:57:56 +0000 |
commit | db684723c4cf2a2f7316f4c3bbeace9b0f2e3a17 (patch) | |
tree | aef4a350a9e0c384ddcd9976007ffb8c55738ee3 /openwrt/package/base-files/default/etc/init.d/S40network | |
parent | b0cb4335729ec3dcbf069f9bd03b6ddee82c70ea (diff) |
don't load config files in failsafe mode
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1750 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/base-files/default/etc/init.d/S40network')
-rwxr-xr-x | openwrt/package/base-files/default/etc/init.d/S40network | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/package/base-files/default/etc/init.d/S40network b/openwrt/package/base-files/default/etc/init.d/S40network index c4226d343..df7c6b351 100755 --- a/openwrt/package/base-files/default/etc/init.d/S40network +++ b/openwrt/package/base-files/default/etc/init.d/S40network @@ -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 |