diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-11-19 03:17:20 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-11-19 03:17:20 +0000 |
commit | c40541ffc885a906a8623bba7eba99053757c1ae (patch) | |
tree | e7d7ed2186bebf9810051d0092eacbca8537a92e /openwrt/package/base-files/default/sbin/hotplug | |
parent | 081f1be6f3d887479e209a0c79ed7ebc00ffa3d3 (diff) |
hotplug-based network script rewrite
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2531 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/base-files/default/sbin/hotplug')
-rwxr-xr-x | openwrt/package/base-files/default/sbin/hotplug | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/openwrt/package/base-files/default/sbin/hotplug b/openwrt/package/base-files/default/sbin/hotplug index 4e009593a..e53b2afcc 100755 --- a/openwrt/package/base-files/default/sbin/hotplug +++ b/openwrt/package/base-files/default/sbin/hotplug @@ -1,7 +1,11 @@ #!/bin/sh +[ -e /tmp/.failsafe ] && { + export FAILSAFE=true +} || { + [ -e /etc/config/network ] && . /etc/config/network +} . /etc/functions.sh . /etc/network.overrides -[ "$FAILSAFE" != "true" -a -e /etc/config/network ] && . /etc/config/network PATH=/bin:/sbin:/usr/bin:/usr/sbin LOGNAME=root |