Browse code

Update client-env to use openstackclient commands

Updated the only instance of a keystoneclient command, to
check if the identity service is enabled.

Change-Id: If86f71c1610a79690d6c6a8eb423b6fa234372bb

Steve Martinelli authored on 2014/03/14 13:32:46
Showing 1 changed files
... ...
@@ -64,7 +64,7 @@ if [[ "$ENABLED_SERVICES" =~ "key" ]]; then
64 64
         STATUS_KEYSTONE="Skipped"
65 65
     else
66 66
         echo -e "\nTest Keystone"
67
-        if keystone catalog --service identity; then
67
+        if openstack endpoint show identity; then
68 68
             STATUS_KEYSTONE="Succeeded"
69 69
         else
70 70
             STATUS_KEYSTONE="Failed"