From b8df1b4c802a0f113d48456b093e73f20c0cef45 Mon Sep 17 00:00:00 2001 From: jow Date: Mon, 14 Sep 2009 16:14:27 +0000 Subject: [package] base-files: dispatch ifdown events for proto=none interfaces and fix a race condition between revert state and hotplug handlers git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17582 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/base-files/files/sbin/ifdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'package/base-files/files') diff --git a/package/base-files/files/sbin/ifdown b/package/base-files/files/sbin/ifdown index 883f8ec42..8de414d8b 100755 --- a/package/base-files/files/sbin/ifdown +++ b/package/base-files/files/sbin/ifdown @@ -22,8 +22,8 @@ config_get proto "$cfg" proto [ -z "$proto" ] && { echo "interface not found."; exit; } config_get iface "$cfg" device -[ "static" = "$proto" ] && { - env -i ACTION="ifdown" INTERFACE="$cfg" DEVICE="$iface" PROTO=static /sbin/hotplug-call "iface" & +[ "static" = "$proto" -o "none" = "$proto" ] && { + env -i ACTION="ifdown" INTERFACE="$cfg" DEVICE="$iface" PROTO="$proto" /sbin/hotplug-call "iface" } # call interface stop handler -- cgit v1.2.3