From f458a8f21bc1eb250df57f114a0a84abaeac24f0 Mon Sep 17 00:00:00 2001
From: Felix Fietkau <nbd@openwrt.org>
Date: Thu, 9 Nov 2006 22:22:45 +0000
Subject: [PATCH] fix ifdown hotplug event for static

SVN-Revision: 5490
---
 package/base-files/default/sbin/ifdown | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/package/base-files/default/sbin/ifdown b/package/base-files/default/sbin/ifdown
index 4f5be8c8c01..2b7f7b632b5 100755
--- a/package/base-files/default/sbin/ifdown
+++ b/package/base-files/default/sbin/ifdown
@@ -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'"
 
-- 
GitLab