add protection for bridging interface changes
SVN-Revision: 5115
This commit is contained in:
parent
cb3692258e
commit
5fee2188f5
1 changed files with 7 additions and 0 deletions
|
@ -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 a new issue