Fix typo in _move_neutron_addresses_route()

A previous change in this code had a typo, reversing the
definitions of IP_ADD and IP_DEL, noticed while debugging
another issue.

Change-Id: Ifb87de1138eeb72081a2e52a5c81bfe9fe91ecd6
This commit is contained in:
Brian Haley 2015-09-02 15:40:04 -04:00 committed by Gal Sagie
parent 42bff13ecf
commit 9451021200

View File

@ -826,11 +826,11 @@ function _move_neutron_addresses_route {
fi
if [[ "$IP_BRD" != "" ]]; then
IP_ADD="sudo ip addr del $IP_BRD dev $from_intf"
IP_DEL="sudo ip addr add $IP_BRD dev $to_intf"
IP_DEL="sudo ip addr del $IP_BRD dev $from_intf"
IP_ADD="sudo ip addr add $IP_BRD dev $to_intf"
fi
$IP_ADD; $IP_DEL; $ADD_OVS_PORT; $ADD_DEFAULT_ROUTE
$IP_DEL; $IP_ADD; $ADD_OVS_PORT; $ADD_DEFAULT_ROUTE
fi
}