Prevent "SIOCSIFHWADDR: Device or resource busy" when trying to change mac address

SVN-Revision: 13258
This commit is contained in:
Jo-Philipp Wich 2008-11-17 10:47:02 +00:00
parent 8a0ac9897f
commit 789848d327

View file

@ -232,6 +232,7 @@ setup_interface() {
config_get mtu "$config" mtu
config_get macaddr "$config" macaddr
grep "$iface:" /proc/net/dev > /dev/null && \
$DEBUG ifconfig "$iface" down && \
$DEBUG ifconfig "$iface" ${macaddr:+hw ether "$macaddr"} ${mtu:+mtu $mtu} up
set_interface_ifname "$config" "$iface"