Merge "detect failure of 'keystone token-get'"

This commit is contained in:
Jenkins 2013-10-22 12:36:29 +00:00 committed by Gerrit Code Review
commit 21178a1c74
3 changed files with 3 additions and 0 deletions

View File

@ -102,6 +102,7 @@ KEYSTONE="keystone"
# and save it.
TOKEN=`keystone token-get | grep ' id ' | awk '{print $4}'`
die_if_not_set $LINENO TOKEN "Keystone fail to get token"
# Various functions
# -----------------

View File

@ -1175,6 +1175,7 @@ fi
if is_service_enabled g-reg; then
TOKEN=$(keystone token-get | grep ' id ' | get_field 2)
die_if_not_set $LINENO TOKEN "Keystone fail to get token"
if is_baremetal; then
echo_summary "Creating and uploading baremetal images"

View File

@ -33,6 +33,7 @@ fi
# Get a token to authenticate to glance
TOKEN=$(keystone token-get | grep ' id ' | get_field 2)
die_if_not_set $LINENO TOKEN "Keystone fail to get token"
# Glance connection info. Note the port must be specified.
GLANCE_HOSTPORT=${GLANCE_HOSTPORT:-$GLANCE_HOST:9292}