openwrtv4/openwrt/package/base-files/default/etc/hotplug.d/net/10-net
Felix Fietkau 155c4da52b fix more instances of '' abuse
SVN-Revision: 4326
2006-07-30 13:21:18 +00:00

28 lines
532 B
Text

# Copyright (C) 2006 OpenWrt.org
include network
addif() {
scan_interfaces
setup_interface "$INTERFACE"
# find all vlan configurations for this interface and set them up as well
for ifc in $interfaces; do
config_get iftype "$ifc" type
case "$iftype" in
bridge) config_get ifs "$ifc" ifnames;;
*) config_get ifs "$ifc" ifname;;
esac
for dev in $ifs; do
[ "${dev%%\.*}" = "$INTERFACE" -a "$dev" != "$INTERFACE" ] && {
add_vlan "$dev"
}
done
done
}
case "$ACTION" in
add|register)
addif
;;
esac