diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-11-09 22:11:11 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-11-09 22:11:11 +0000 |
commit | b11a051525caa507ec51262826725bda5e4d5787 (patch) | |
tree | 258611decc9ba8cbcef4849b8a9526099ebd36de /package | |
parent | dbdbdbbeb3b3fcd8d8f1ae51b95db8a99ac5e829 (diff) | |
download | upstream-b11a051525caa507ec51262826725bda5e4d5787.tar.gz upstream-b11a051525caa507ec51262826725bda5e4d5787.tar.bz2 upstream-b11a051525caa507ec51262826725bda5e4d5787.zip |
fix ifup hotplug event for static
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5489 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rwxr-xr-x | package/base-files/default/lib/network/config.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/default/lib/network/config.sh b/package/base-files/default/lib/network/config.sh index 502377b601..32558de8f3 100755 --- a/package/base-files/default/lib/network/config.sh +++ b/package/base-files/default/lib/network/config.sh @@ -122,7 +122,7 @@ setup_interface() { done } - env -i ACTION="ifup" INTERFACE="config" DEVICE="$iface" PROTO=static /sbin/hotplug "iface" & + env -i ACTION="ifup" INTERFACE="$config" DEVICE="$iface" PROTO=static /sbin/hotplug "iface" & ;; dhcp) # prevent udhcpc from starting more than once |