fix ifdown hotplug event for static
[openwrt.git] / package / base-files / default / sbin / ifdown
index 4f5be8c..2b7f7b6 100755 (executable)
@@ -12,6 +12,11 @@ debug "### ifdown $cfg ###"
 config_get proto "$cfg" proto
 [ -z "$proto" ] && { echo "interface not found."; exit; }
 
+config_get iface "$cfg" device
+[ "$proto" = "static" ] && {
+       env -i ACTION="ifdown" INTERFACE="$config" DEVICE="$iface" PROTO=static /sbin/hotplug "iface" &
+}
+
 # call interface stop handler
 ( type "stop_interface_$proto" ) >/dev/null 2>/dev/null && eval "stop_interface_$proto '$cfg'"
 
This page took 0.022626 seconds and 4 git commands to generate.