diff options
author | liboNet <libo.zhu@intel.com> | 2018-04-27 11:01:17 +0800 |
---|---|---|
committer | liboNet <libo.zhu@intel.com> | 2018-04-27 11:01:17 +0800 |
commit | 278d6163886ad72ac52b19b237ba902082474d5a (patch) | |
tree | fd3ca906dc5ac0f820a98da81ab740cc66445362 /ocata/vagrant/test/test-identity.sh | |
parent | b73c759ceb608d50a67564bf5695060722505b6b (diff) |
Fix the token parse issue while get openstack auth
remove the mismatch \r sign and use cat -v to show the exact result
Change-Id: Ida7da6da7dbb0eb9bfe67e470bbfbe892505f90d
Issue-ID: MULTICLOUD-200
Signed-off-by: liboNet <libo.zhu@intel.com>
Diffstat (limited to 'ocata/vagrant/test/test-identity.sh')
-rw-r--r-- | ocata/vagrant/test/test-identity.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ocata/vagrant/test/test-identity.sh b/ocata/vagrant/test/test-identity.sh index e09fef75..6adb8822 100644 --- a/ocata/vagrant/test/test-identity.sh +++ b/ocata/vagrant/test/test-identity.sh @@ -2,7 +2,7 @@ set -ex MULTICLOUD_PLUGIN_ENDPOINT=http://172.16.77.40:9006/api/multicloud-ocata/v0/openstack-hudson-dc_RegionOne -TOKEN=$(curl -v -s -H "Content-Type: application/json" -X POST -d '{ }' $MULTICLOUD_PLUGIN_ENDPOINT/identity/v3/auth/tokens 2>&1 | grep X-Subject-Token | sed "s/^.*: //") +TOKEN=$(curl -v -s -H "Content-Type: application/json" -X POST -d '{ }' $MULTICLOUD_PLUGIN_ENDPOINT/identity/v3/auth/tokens 2>&1 | grep X-Subject-Token | sed "s/\r//g" | sed "s/^.*: //" | cat -v) curl -v -s -H "Content-Type: application/json" -H "X-Auth-Token: $TOKEN" -X GET $MULTICLOUD_PLUGIN_ENDPOINT/identity/v2.0/tenants curl -v -s -H "Content-Type: application/json" -H "X-Auth-Token: $TOKEN" -X GET $MULTICLOUD_PLUGIN_ENDPOINT/identity/v3/projects curl -v -s -H "Content-Type: application/json" -H "X-Auth-Token: $TOKEN" -X GET $MULTICLOUD_PLUGIN_ENDPOINT/identity/v3/auth/catalog |