1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-09 21:41:53 +02:00
openwrt-xburst/package/base-files/default/sbin/ifup
nbd 95e7b381e9 add protection for bridging interface changes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5115 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-10-15 15:44:39 +00:00

22 lines
485 B
Bash
Executable File

#!/bin/sh
# Copyright (C) 2006 OpenWrt.org
. /sbin/ifdown "$@"
config_get iftype "$1" type
case "$iftype" in
bridge) config_get ifname "$1" ifnames;;
*) config_get ifname "$1" ifname;;
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