projects
/
openwrt
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
57f2868
)
fix ifdown hotplug event for static
author
Felix Fietkau
<nbd@openwrt.org>
Thu, 9 Nov 2006 22:22:45 +0000
(22:22 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Thu, 9 Nov 2006 22:22:45 +0000
(22:22 +0000)
SVN-Revision: 5490
package/base-files/default/sbin/ifdown
patch
|
blob
|
history
diff --git
a/package/base-files/default/sbin/ifdown
b/package/base-files/default/sbin/ifdown
index 4f5be8c8c01d1b324a8669e84f6f3e52581171e9..2b7f7b632b55293e8eeb80b7c2c509b8937e959d 100755
(executable)
--- 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'"