X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/9c250a1ea99dc76aef9d899a7da5116cabf2dff9..02e3b0f5531da86339e8da86b1f78a9b6aba7f50:/package/base-files/files/sbin/ifdown diff --git a/package/base-files/files/sbin/ifdown b/package/base-files/files/sbin/ifdown index 92cdfd2b0..1455a9de7 100755 --- a/package/base-files/files/sbin/ifdown +++ b/package/base-files/files/sbin/ifdown @@ -1,16 +1,20 @@ #!/bin/sh -# Copyright (C) 2006 OpenWrt.org +# Copyright (C) 2006-2011 OpenWrt.org . /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" - } - config_load network - exit -} + +case "$1" in + "-a") + [ -e "/tmp/resolv.conf.auto" ] && rm /tmp/resolv.conf.auto + config_cb() { + [ interface != "$1" -o -z "$2" ] || eval "$0 -w $2" + } + config_load network + exit 0 + ;; + "-w") shift ;; +esac include /lib/network scan_interfaces