diff options
author | Tim Rozet <trozet@redhat.com> | 2016-01-07 11:08:46 -0500 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2016-01-07 16:06:09 -0500 |
commit | ddb27a25b168c79a5f920242e2638e3b4f5d9a97 (patch) | |
tree | cdc5dea8754f83e128bd4d0e323a1f536e148dfd /ci/deploy.sh | |
parent | 1752bb48e0782633b7755b86b49234ec1c0acaf0 (diff) |
Moves rdo images URL to a new location for opnfv
Change-Id: I4e16b4a4432c935715f0522956614c891a695f70
Signed-off-by: Tim Rozet <trozet@redhat.com>
Diffstat (limited to 'ci/deploy.sh')
-rwxr-xr-x | ci/deploy.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index 118c763d..01bf003d 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -508,11 +508,13 @@ function setup_instack_vm { #if not found then dnsmasq may be using leasefile-ro instack_mac=$(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}" |