summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Rozet <trozet@redhat.com>2017-02-03 13:53:03 -0500
committerJose Lausuch <jose.lausuch@ericsson.com>2017-02-06 09:33:25 +0000
commit653d7ba32063633c15b9a9f71b3749073435cc90 (patch)
tree53db6bae8207426bd58bfc825dd817f61559fe2c
parentdf8e07ba043bc150ae9640af2cee5c8c10ccc47b (diff)
Migrates more commands to openstack-pythonclient cmds
Change-Id: I7be6a89d7b0fb7997ea05607d45e792e0ce57051 Signed-off-by: Tim Rozet <trozet@redhat.com>
-rwxr-xr-xfunctest/ci/check_os.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/functest/ci/check_os.sh b/functest/ci/check_os.sh
index e2471026c..b875a173e 100755
--- a/functest/ci/check_os.sh
+++ b/functest/ci/check_os.sh
@@ -57,11 +57,11 @@ echo " ...OK"
echo "Checking OpenStack basic services:"
-commands=('openstack endpoint list' 'nova list' 'neutron net-list' \
- 'glance image-list' 'cinder list')
+commands=('openstack endpoint list' 'openstack server list' 'openstack network list' \
+ 'openstack image list' 'openstack volume list')
for cmd in "${commands[@]}"
do
- service=$(echo $cmd | awk '{print $1}')
+ service=$(echo $cmd | awk '{print $1, $2}')
echo ">>Checking $service service..."
$cmd &>/dev/null
result=$?