From: nbd Date: Tue, 27 Feb 2007 23:34:14 +0000 (+0000) Subject: add a check for brctl in the unbridge() function (fixes #1417) X-Git-Url: http://git.ozo.com/?a=commitdiff_plain;h=8ab2244c0d7a13a8349f9c5fc6aabe7f87c04497;p=openwrt-10.03%2F.git add a check for brctl in the unbridge() function (fixes #1417) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6410 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh index 2b1574937..95954bf15 100755 --- a/package/base-files/files/lib/network/config.sh +++ b/package/base-files/files/lib/network/config.sh @@ -195,7 +195,8 @@ setup_interface() { unbridge() { local dev="$1" local brdev - + + [ -x /usr/sbin/brctl ] || return 0 brctl show | grep "$dev" >/dev/null && { # interface is still part of a bridge, correct that