diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-11-19 19:04:15 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-11-19 19:04:15 +0000 |
commit | 777e76abb47dd74816ea063c471359b0db3aa2e7 (patch) | |
tree | abf63218cb81038ce1ca42d9a91c65464dff6500 /package/base-files/default/sbin/ifdown | |
parent | 76dec73b0b803f861192efe08b95f2cf331a96e2 (diff) |
more fixes for the network scripts
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2537 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/default/sbin/ifdown')
-rwxr-xr-x | package/base-files/default/sbin/ifdown | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/base-files/default/sbin/ifdown b/package/base-files/default/sbin/ifdown index 8818d4614..85bb2fbc5 100755 --- a/package/base-files/default/sbin/ifdown +++ b/package/base-files/default/sbin/ifdown @@ -15,6 +15,8 @@ case "$if_proto" in ""|none) exit 0;; esac +[ "${if%%[0-9]*}" = "ppp" ] && if="$(nvram get ${if_proto}_ifname)" + if [ "${if%%[0-9]}" = "br" ]; then for sif in $(nvram get ${type}_ifnames); do hotplug_dev unregister "$sif" |