diff --git a/utils/openstack-status b/utils/openstack-status index 7f6df86..7c934bc 100755 --- a/utils/openstack-status +++ b/utils/openstack-status @@ -270,7 +270,7 @@ fi if test "$keystonerc" && test "$glance"; then printf "== Glance images ==\n" - glance image-list + openstack image list fi if test "$nova"; then @@ -278,17 +278,17 @@ if test "$nova"; then test "$keystone" || echo "Warning novarc not sourced" >&2 else printf "== Nova managed services ==\n" - nova service-list + openstack compute service list printf "== Nova networks ==\n" - nova network-list + openstack network list printf "== Nova instance flavors ==\n" # Check direct access - nova flavor-list + openstack flavor list printf "== Nova instances ==\n" # Check access through the API - nova list --all-tenants # instances + openstack server list --all-projects # instances fi fi