do not run hotplug event for aliases

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15224 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
Felix Fietkau 2009-04-13 00:43:23 +00:00
parent 53c1991114
commit 3c345b5c8e

View File

@ -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" &
}