diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-09-12 17:02:34 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-09-12 17:02:34 +0000 |
commit | 5668f2ec2143d73218223baf200b3222b9aabbb4 (patch) | |
tree | 92bf5bceb252334085ffc61a9ece288e84bc89a4 /package/base-files/files | |
parent | 82b6ff28f087a5603d5c1c30fad0a8495434b9dc (diff) |
fix a few issues with dynamically assigned interfaces
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8765 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files')
-rwxr-xr-x | package/base-files/files/sbin/ifdown | 2 | ||||
-rwxr-xr-x | package/base-files/files/usr/share/udhcpc/default.script | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/package/base-files/files/sbin/ifdown b/package/base-files/files/sbin/ifdown index f8ce81bcb..08433c75c 100755 --- a/package/base-files/files/sbin/ifdown +++ b/package/base-files/files/sbin/ifdown @@ -11,6 +11,8 @@ exit } +config_load /var/state/network + # remove the interface's network state FILE=/var/state/network.$$ grep -v "^config_set '$1' " /var/state/network > "$FILE" diff --git a/package/base-files/files/usr/share/udhcpc/default.script b/package/base-files/files/usr/share/udhcpc/default.script index 7ce3d2aa8..30e84e6da 100755 --- a/package/base-files/files/usr/share/udhcpc/default.script +++ b/package/base-files/files/usr/share/udhcpc/default.script @@ -7,6 +7,7 @@ RESOLV_CONF="/tmp/resolv.conf.auto" hotplug_event() { scan_interfaces + config_load /var/state/network for ifc in $interfaces; do config_get ifname $ifc ifname [ "$ifname" = "$interface" ] || continue |