diff --git a/bundles/vmhost/files/check_vm_status b/bundles/vmhost/files/check_vm_status index cb39f57..d75d610 100644 --- a/bundles/vmhost/files/check_vm_status +++ b/bundles/vmhost/files/check_vm_status @@ -30,6 +30,8 @@ for vm in result[2:]: stopped.add('{}: {}'.format(info[1], info[2])) +print('{} running, {} stopped, {} crashed'.format(len(running), len(stopped), len(crashed))) + for vm in sorted(crashed): print(vm)