mirror of
https://github.com/openwrt/openwrt.git
synced 2024-11-24 10:25:51 +08:00
add protection for bridging interface changes
SVN-Revision: 5115
This commit is contained in:
parent
cb3692258e
commit
5fee2188f5
@ -10,5 +10,12 @@ case "$iftype" in
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
for dev in $ifname; do
|
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"
|
setup_interface "$dev" "$1"
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user