1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-18 21:48:23 +02:00

base-file: cleanup ipv6 enabling in unbridge

SVN-Revision: 25473
This commit is contained in:
Jo-Philipp Wich 2011-02-12 16:14:15 +00:00
parent e08740c747
commit ee3a4c2ee9

@ -416,9 +416,7 @@ unbridge() {
for brdev in $(brctl show | awk '$2 ~ /^[0-9].*\./ { print $1 }'); do
brctl delif "$brdev" "$dev" 2>/dev/null >/dev/null
do_sysctl net.ipv6.conf.$dev.disable_ipv6 0
[ "${dev##wlan}" != "$dev" ] && \
do_sysctl net.ipv6.conf.mon.$dev.disable_ipv6 0
do_sysctl "net.ipv6.conf.$dev.disable_ipv6" 0
done
}
}