mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 03:11:32 +02:00
add protection for bridging interface changes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5115 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
6aa6b0b1a0
commit
95e7b381e9
@ -10,5 +10,12 @@ case "$iftype" in
|
||||
esac
|
||||
|
||||
for dev in $ifname; do
|
||||
brctl show | grep "$dev" >/dev/null && {
|
||||
# interface is still part of a bridge, correct that
|
||||
|
||||
for brdev in $(brctl show | awk '$2 ~ /^[0-9].*\./ { print $1 }'); do
|
||||
brctl delif "$brdev" "$dev" 2>/dev/null >/dev/null
|
||||
done
|
||||
}
|
||||
setup_interface "$dev" "$1"
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user