diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-02-03 06:48:15 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-02-03 06:48:15 +0000 |
commit | afa5da1d1bf575000d260e9abe26d47b94e3e117 (patch) | |
tree | 20d8c580675afbba4a8238eaa677d3f0fe438323 /package/base-files/files/sbin/ifdown | |
parent | 007000ead9f2531015d4c2c9f0b14be24d8d4aa1 (diff) |
Here comes the new UCI. Enjoy :)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10367 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/sbin/ifdown')
-rwxr-xr-x | package/base-files/files/sbin/ifdown | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/package/base-files/files/sbin/ifdown b/package/base-files/files/sbin/ifdown index 08433c75c..1f200fbdf 100755 --- a/package/base-files/files/sbin/ifdown +++ b/package/base-files/files/sbin/ifdown @@ -11,12 +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" -mv "$FILE" /var/state/network +uci_revert_state network "$1" include /lib/network scan_interfaces |