From ddb27a25b168c79a5f920242e2638e3b4f5d9a97 Mon Sep 17 00:00:00 2001 From: Tim Rozet Date: Thu, 7 Jan 2016 11:08:46 -0500 Subject: Moves rdo images URL to a new location for opnfv Change-Id: I4e16b4a4432c935715f0522956614c891a695f70 Signed-off-by: Tim Rozet --- build/instack.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'build/instack.sh') diff --git a/build/instack.sh b/build/instack.sh index 39ab9b05..b4657e2a 100755 --- a/build/instack.sh +++ b/build/instack.sh @@ -2,7 +2,7 @@ set -e declare -i CNT -rdo_images_uri=https://ci.centos.org/artifacts/rdo/images/liberty/delorean/stable +rdo_images_uri=https://repos.fedorapeople.org/repos/openstack-m/rdo-images-centos-liberty-opnfv vm_index=4 RDO_RELEASE=liberty @@ -104,11 +104,13 @@ if [ -z "$UNDERCLOUD" ]; then #if not found then dnsmasq may be using leasefile-ro instack_mac=$(ssh -T ${SSH_OPTIONS[@]} stack@localhost "virsh domiflist instack" | grep default | \ grep -Eo "[0-9a-f\]+:[0-9a-f\]+:[0-9a-f\]+:[0-9a-f\]+:[0-9a-f\]+:[0-9a-f\]+") - UNDERCLOUD=$(arp -e | grep ${instack_mac} | awk {'print $1'}) + UNDERCLOUD=$(/usr/sbin/arp -e | grep ${instack_mac} | awk {'print $1'}) if [ -z "$UNDERCLOUD" ]; then echo "\n\nNever got IP for Instack. Can Not Continue." exit 1 + else + echo -e "${blue}\rInstack VM has IP $UNDERCLOUD${reset}" fi else echo -e "${blue}\rInstack VM has IP $UNDERCLOUD${reset}" -- cgit 1.2.3-korg