diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-06-16 00:01:33 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-06-16 00:01:33 +0000 |
commit | 97ca42e813d5a0a03bd1a70576375dad8469044a (patch) | |
tree | 90b0a4b1f403fbf8f0c1576ca1ea25d8fe4af8ee /package/base-files/files/sbin/ifdown | |
parent | 947b9e0e9501105e71916c58dcbc67501f677bed (diff) | |
download | upstream-97ca42e813d5a0a03bd1a70576375dad8469044a.tar.gz upstream-97ca42e813d5a0a03bd1a70576375dad8469044a.tar.bz2 upstream-97ca42e813d5a0a03bd1a70576375dad8469044a.zip |
keep track of the network interface states (stored in uci format in /var/state/network, overlay over /etc/config/network)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7643 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, 6 insertions, 0 deletions
diff --git a/package/base-files/files/sbin/ifdown b/package/base-files/files/sbin/ifdown index 8ec568ff6b..f8ce81bcbd 100755 --- a/package/base-files/files/sbin/ifdown +++ b/package/base-files/files/sbin/ifdown @@ -10,6 +10,12 @@ config_load network exit } + +# remove the interface's network state +FILE=/var/state/network.$$ +grep -v "^config_set '$1' " /var/state/network > "$FILE" +mv "$FILE" /var/state/network + include /lib/network scan_interfaces |