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 | 57f2868c3d1798bedd54f59eb1c78ba09f5573d5 (patch) | |
tree | cb783c0e139b4024871cef03a7a8344ecc8f2836 /package/base-files | |
parent | 1dc538c39a98a51653671cdb3ac9837922e30e2f (diff) | |
download | upstream-57f2868c3d1798bedd54f59eb1c78ba09f5573d5.tar.gz upstream-57f2868c3d1798bedd54f59eb1c78ba09f5573d5.tar.bz2 upstream-57f2868c3d1798bedd54f59eb1c78ba09f5573d5.zip |
fix ifup hotplug event for static
SVN-Revision: 5489
Diffstat (limited to 'package/base-files')
-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 |