projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b11a051
)
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)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5490
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
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
4f5be8c
..
2b7f7b6
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'"