diff options
author | JingLu5 <lvjing5@huawei.com> | 2016-12-20 11:17:45 +0800 |
---|---|---|
committer | JingLu5 <lvjing5@huawei.com> | 2016-12-20 11:17:45 +0800 |
commit | 303361e1c69d5743ba621d37db1515297597f666 (patch) | |
tree | d13593bc42e871b6215474546643b3b293720462 /tests/ci/yardstick-verify | |
parent | 367691281be05a5f2c76455465ff14078415e6c2 (diff) |
Replace heat, keystone and nova command with openstack command
JIRA: YARDSTICK-486
In future Openstack release, 'heat', 'keystone', 'nova' command will be
deprecated. So we need to use 'openstack' command instead.
Change-Id: I7070f8aaf0d235705b65e0760c845f843ad79719
Signed-off-by: JingLu5 <lvjing5@huawei.com>
Diffstat (limited to 'tests/ci/yardstick-verify')
-rwxr-xr-x | tests/ci/yardstick-verify | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/ci/yardstick-verify b/tests/ci/yardstick-verify index 7644c96c4..46b32cc2c 100755 --- a/tests/ci/yardstick-verify +++ b/tests/ci/yardstick-verify @@ -301,8 +301,8 @@ main() # check OpenStack services echo "Checking OpenStack services:" - for cmd in "glance image-list" "nova list" "heat stack-list"; do - echo " checking ${cmd/%\ */} ..." + for cmd in "openstack image list" "openstack server list" "openstack stack list"; do + echo " checking ${cmd} ..." if ! $cmd >/dev/null; then echo "error: command \"$cmd\" failed" exit 1 @@ -311,7 +311,7 @@ main() echo echo "Checking for External network:" - for net in $(neutron net-list --router:external True -c name -f value); do + for net in $(openstack network list --external -c Name -f value); do echo " external network: $net" done |