Browse code

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

Brian Haley authored on 2015/09/03 04:40:04
Showing 1 changed files
... ...
@@ -826,11 +826,11 @@ function _move_neutron_addresses_route {
826 826
         fi
827 827
 
828 828
         if [[ "$IP_BRD" != "" ]]; then
829
-            IP_ADD="sudo ip addr del $IP_BRD dev $from_intf"
830
-            IP_DEL="sudo ip addr add $IP_BRD dev $to_intf"
829
+            IP_DEL="sudo ip addr del $IP_BRD dev $from_intf"
830
+            IP_ADD="sudo ip addr add $IP_BRD dev $to_intf"
831 831
         fi
832 832
 
833
-        $IP_ADD; $IP_DEL; $ADD_OVS_PORT; $ADD_DEFAULT_ROUTE
833
+        $IP_DEL; $IP_ADD; $ADD_OVS_PORT; $ADD_DEFAULT_ROUTE
834 834
     fi
835 835
 }
836 836