Add missing text

This commit is contained in:
Joshua Boniface 2018-07-18 22:58:41 -04:00
parent 00f5567b9c
commit 962cc0f5b0
1 changed files with 12 additions and 0 deletions

12
pvc.py
View File

@ -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`