diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-02-03 06:48:15 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-02-03 06:48:15 +0000 |
commit | 0cf1a58282bacda7552d294e0f99562ece74cf22 (patch) | |
tree | f1c533f73a26f5da018025fae277a27c84ecdfc0 /package/base-files/files/sbin/ifdown | |
parent | 32f2870131750e44e5a73f6255f077cddca2bca1 (diff) | |
download | upstream-0cf1a58282bacda7552d294e0f99562ece74cf22.tar.gz upstream-0cf1a58282bacda7552d294e0f99562ece74cf22.tar.bz2 upstream-0cf1a58282bacda7552d294e0f99562ece74cf22.zip |
Here comes the new UCI. Enjoy :)
SVN-Revision: 10367
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 08433c75c6..1f200fbdf1 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 |