mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-18 22:43:53 +01:00
avoid duplicate vlan add events
SVN-Revision: 12057
This commit is contained in:
parent
8970a1213b
commit
d98002bd59
@ -61,7 +61,9 @@ add_vlan() {
|
||||
[ "$1" = "$vif" ] || ifconfig "$1" >/dev/null 2>/dev/null || {
|
||||
ifconfig "$vif" up 2>/dev/null >/dev/null || add_vlan "$vif"
|
||||
$DEBUG vconfig add "$vif" "${1##*\.}"
|
||||
return 0
|
||||
}
|
||||
return 1
|
||||
}
|
||||
|
||||
# sort the device list, drop duplicates
|
||||
@ -94,7 +96,7 @@ prepare_interface() {
|
||||
}
|
||||
|
||||
# Setup VLAN interfaces
|
||||
add_vlan "$iface"
|
||||
add_vlan "$iface" && return 1
|
||||
ifconfig "$iface" 2>/dev/null >/dev/null || return 0
|
||||
|
||||
# Setup bridging
|
||||
|
Loading…
Reference in New Issue
Block a user