diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-05-28 00:59:19 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-05-28 00:59:19 +0000 |
commit | 97d22ab94aa4266bafaa84352a86908c5af99b29 (patch) | |
tree | d5b41d79ee78a5c8a06e57603ff0471e1300b524 /package/base-files | |
parent | 9d9ee7c9df65a1ac775617bc5e8d26f8761a7804 (diff) | |
download | master-187ad058-97d22ab94aa4266bafaa84352a86908c5af99b29.tar.gz master-187ad058-97d22ab94aa4266bafaa84352a86908c5af99b29.tar.bz2 master-187ad058-97d22ab94aa4266bafaa84352a86908c5af99b29.zip |
[package] base-files: bring bridge port iface down before changing the mac (#7111)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21595 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files')
-rwxr-xr-x | package/base-files/files/lib/network/config.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh index 32170bb274..37dc2085fb 100755 --- a/package/base-files/files/lib/network/config.sh +++ b/package/base-files/files/lib/network/config.sh @@ -170,6 +170,8 @@ prepare_interface() { # result in another setup_interface() call, so we simply stop processing # the current event at this point. } + + [ -n "$macaddr" ] && ifconfig "$iface" down 2>/dev/null >/dev/null ifconfig "$iface" ${macaddr:+hw ether "${macaddr}"} up 2>/dev/null >/dev/null return 1 } |