aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2008-10-29 17:26:59 +0000
committerFelix Fietkau <nbd@openwrt.org>2008-10-29 17:26:59 +0000
commit9b75b9e35c9d9333cdfe303a1eb903032300d242 (patch)
tree6687413922906d71a5578cdef70b30d34f4a0748 /package/base-files
parenta4f11ca22e6f69d2feab4f239eb84d35f7cbe555 (diff)
downloadupstream-9b75b9e35c9d9333cdfe303a1eb903032300d242.tar.gz
upstream-9b75b9e35c9d9333cdfe303a1eb903032300d242.tar.bz2
upstream-9b75b9e35c9d9333cdfe303a1eb903032300d242.zip
don't bring down interfaces when preparing them
SVN-Revision: 13079
Diffstat (limited to 'package/base-files')
-rwxr-xr-xpackage/base-files/files/lib/network/config.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh
index dfee674915..b89168e07c 100755
--- a/package/base-files/files/lib/network/config.sh
+++ b/package/base-files/files/lib/network/config.sh
@@ -90,8 +90,8 @@ prepare_interface() {
[ "br-$config" = "$iface" -o -e "$iface" ] && return 0;
ifconfig "$iface" 2>/dev/null >/dev/null && {
- # make sure the interface is removed from any existing bridge and brought down
- ifconfig "$iface" down
+ # make sure the interface is removed from any existing bridge and deconfigured
+ ifconfig "$iface" 0.0.0.0
unbridge "$iface"
}