From 17398a3de3fc993b47f8a8fe8af669dbbfa21625 Mon Sep 17 00:00:00 2001 From: "Sean M. Collins" Date: Wed, 11 May 2016 18:24:46 +0000 Subject: [PATCH] Make ARP_CMD local Change-Id: Iaa540f7685197a17f1db4c3351373a6d77a80105 --- lib/neutron-legacy | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/neutron-legacy b/lib/neutron-legacy index 7eb8637634..af0e743fb3 100644 --- a/lib/neutron-legacy +++ b/lib/neutron-legacy @@ -621,14 +621,13 @@ function _move_neutron_addresses_route { DEFAULT_ROUTE_GW=$(ip -f $af r | awk "/default.+$from_intf/ { print \$3; exit }") local ADD_OVS_PORT="" local DEL_OVS_PORT="" + local ARP_CMD="" IP_BRD=$(ip -f $af a s dev $from_intf scope global primary | grep inet | awk '{ print $2, $3, $4; exit }') if [[ "$af" == "inet" ]]; then IP=$(echo $IP_BRD | awk '{ print $1; exit }' | grep -o -E '(.*)/' | cut -d "/" -f1) ARP_CMD="arping -A -c 3 -w 4.5 -I $to_intf $IP " - else - ARP_CMD="" fi if [ "$DEFAULT_ROUTE_GW" != "" ]; then