aboutsummaryrefslogtreecommitdiffstats
path: root/package/firewall/files/firewall.hotplug
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-09-15 01:53:36 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-09-15 01:53:36 +0000
commit7557011cb170afb8f737c19b1e3b30290428edfd (patch)
treed645990ddb4231fade3052a88767496beadb641d /package/firewall/files/firewall.hotplug
parent1fe50da4bb3a207aff8f8d792d39a11f854edf13 (diff)
downloadupstream-7557011cb170afb8f737c19b1e3b30290428edfd.tar.gz
upstream-7557011cb170afb8f737c19b1e3b30290428edfd.tar.bz2
upstream-7557011cb170afb8f737c19b1e3b30290428edfd.zip
firewall: run ifdown hotplug events synchronized, fixes a racecondition on "ifup iface" when ifdown and ifup events are delivered with a small dealy
SVN-Revision: 23064
Diffstat (limited to 'package/firewall/files/firewall.hotplug')
-rw-r--r--package/firewall/files/firewall.hotplug2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/firewall/files/firewall.hotplug b/package/firewall/files/firewall.hotplug
index ac8469524b..720b34cc89 100644
--- a/package/firewall/files/firewall.hotplug
+++ b/package/firewall/files/firewall.hotplug
@@ -17,6 +17,6 @@ case "$ACTION" in
fw_configure_interface "$INTERFACE" add "$DEVICE" &
;;
ifdown)
- fw_configure_interface "$INTERFACE" del "$DEVICE" &
+ fw_configure_interface "$INTERFACE" del "$DEVICE"
;;
esac