diff options
author | Jose Lausuch <jose.lausuch@ericsson.com> | 2017-02-06 09:43:28 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-02-06 09:43:28 +0000 |
commit | 0088e1419c7ae725071bc70d4940ed52e9a65e8e (patch) | |
tree | 6c8dd60dbd11930c8fcbc39923a64699624f683c | |
parent | 9ed4cad5955d0b8815a5e0c3b10be715de82197a (diff) | |
parent | 653d7ba32063633c15b9a9f71b3749073435cc90 (diff) |
Merge "Migrates more commands to openstack-pythonclient cmds"
-rwxr-xr-x | functest/ci/check_os.sh | 6 |
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=$? |