From: Felix Fietkau Date: Sun, 3 Aug 2008 21:00:01 +0000 (+0000) Subject: network scripts: revert the network state after running ifdown, not before X-Git-Tag: reboot~25914 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=8ff90e326e4a34b483abc094669854499b980ce5;p=openwrt%2Fopenwrt.git network scripts: revert the network state after running ifdown, not before SVN-Revision: 12081 --- diff --git a/package/base-files/files/sbin/ifdown b/package/base-files/files/sbin/ifdown index 1f200fbdf1..7cc87deb77 100755 --- a/package/base-files/files/sbin/ifdown +++ b/package/base-files/files/sbin/ifdown @@ -11,9 +11,6 @@ exit } -# remove the interface's network state -uci_revert_state network "$1" - include /lib/network scan_interfaces @@ -64,3 +61,7 @@ done config_get iftype "$cfg" type [ "bridge" = "$iftype" ] && brctl delbr "$ifname" >/dev/null 2>/dev/null +# remove the interface's network state +uci_revert_state network "$1" + +