network scripts: revert the network state after running ifdown, not before
authorFelix Fietkau <nbd@openwrt.org>
Sun, 3 Aug 2008 21:00:01 +0000 (21:00 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Sun, 3 Aug 2008 21:00:01 +0000 (21:00 +0000)
SVN-Revision: 12081

package/base-files/files/sbin/ifdown

index 1f200fbdf198e0a89fae81f8a18bc05c92583f71..7cc87deb77878b2bf0ef2c9dd70ccce02d2b5a2f 100755 (executable)
@@ -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"
+
+