From 962cc0f5b08b33a285bcef584fb0698183c95fab Mon Sep 17 00:00:00 2001 From: Joshua Boniface Date: Wed, 18 Jul 2018 22:58:41 -0400 Subject: [PATCH] Add missing text --- pvc.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pvc.py b/pvc.py index a316231f..05e29bf2 100755 --- a/pvc.py +++ b/pvc.py @@ -525,6 +525,10 @@ def flush_host(node, wait): 'node', default=myhostname ) def ready_host(node): + """ + Restore NODE to active service and migrate back all VMs. If unspecified, defaults to this host. + """ + do_ready_host(node) @click.command(name='unflush', short_help='Restore node to service.') @@ -532,6 +536,10 @@ def ready_host(node): 'node', default=myhostname ) def unflush_host(node): + """ + Restore NODE to active service and migrate back all VMs. If unspecified, defaults to this host. + """ + do_ready_host(node) @@ -1264,6 +1272,10 @@ def vm_info(domain, long_output): help='Limit list to this hypervisor.' ) def vm_list(hypervisor): + """ + List all virtual machines in the cluster. + """ + get_vm_list(hypervisor) # Wrapped function to allow calling from `node info`