From: Felix Fietkau Date: Mon, 13 Apr 2009 00:43:23 +0000 (+0000) Subject: do not run hotplug event for aliases X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=d479f3b46056e4e5901439ebaf8a2fbe3ab60973;p=openwrt%2Fsvn-archive%2Farchive.git do not run hotplug event for aliases SVN-Revision: 15224 --- diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh index 0ab46c18af..d0aa33d1a4 100755 --- a/package/base-files/files/lib/network/config.sh +++ b/package/base-files/files/lib/network/config.sh @@ -179,6 +179,9 @@ setup_interface_static() { done } + config_get type "$config" TYPE + [ "$type" = "alias" ] && return 0 + env -i ACTION="ifup" INTERFACE="$config" DEVICE="$iface" PROTO=static /sbin/hotplug-call "iface" & }