X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/78fa722e2550faa62a51f15cbfa7841e8e3a4d85..f479350b0c414a45de9467f16590c93fda1d6d7d:/package/base-files/files/sbin/ifdown diff --git a/package/base-files/files/sbin/ifdown b/package/base-files/files/sbin/ifdown index 7cc87deb7..883f8ec42 100755 --- a/package/base-files/files/sbin/ifdown +++ b/package/base-files/files/sbin/ifdown @@ -4,6 +4,7 @@ . /etc/functions.sh [ $# = 0 ] && { echo " $0 "; exit; } [ "x$1" = "x-a" ] && { + [ -e "/tmp/resolv.conf.auto" ] && rm /tmp/resolv.conf.auto config_cb() { [ interface != "$1" -o -z "$2" ] || eval "$0 $2" } @@ -64,4 +65,8 @@ config_get iftype "$cfg" type # remove the interface's network state uci_revert_state network "$1" - +# revert aliases state as well +config_get aliases "$1" aliases +for config in $aliases; do + uci_revert_state network "$config" +done