aboutsummaryrefslogtreecommitdiffstats
path: root/boot/dcae2_vm_init.sh
diff options
context:
space:
mode:
authorLusheng Ji <lji@research.att.com>2017-11-29 17:56:29 -0500
committerLusheng Ji <lji@research.att.com>2017-11-29 17:56:37 -0500
commitb3afda600c08fca77f57c99a75e4c016b756bcca (patch)
treec7494effbf1c3f608e115fde3370816f39ecd25d /boot/dcae2_vm_init.sh
parentce34d8a702ab6fe99dab6d6a94b2600bd1464e59 (diff)
Add handling for keystone url w/o version
Issue-ID: DCAEGEN2-200 Change-Id: Ie686c2443f1110c680f3821fc9e51d68ea952156 Signed-off-by: Lusheng Ji <lji@research.att.com>
Diffstat (limited to 'boot/dcae2_vm_init.sh')
-rwxr-xr-xboot/dcae2_vm_init.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/boot/dcae2_vm_init.sh b/boot/dcae2_vm_init.sh
index 570cb704..b071dffd 100755
--- a/boot/dcae2_vm_init.sh
+++ b/boot/dcae2_vm_init.sh
@@ -450,6 +450,15 @@ register_dns_zone_designate()
TENANT_ID="$(cat /opt/config/tenant_id.txt)"
KEYSTONE_URL="$(cat /opt/config/openstack_keystone_url.txt)"
+ if [[ "$KEYSTONE_URL" == */v3 ]]; then
+ echo "$KEYSTONE_URL"
+ elif [[ "$KEYSTONE_URL" == */v2.0 ]]; then
+ echo "$KEYSTONE_URL"
+ else
+ KEYSTONE_URL="${KEYSTONE_URL}/v2.0"
+ echo "$KEYSTONE_URL"
+ fi
+
USERNAME="$(cat /opt/config/openstack_user.txt)"
PASSWORD="$(cat /opt/config/openstack_password.txt)"