[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] [XENAPI] Add extra param for VM.start and fix case for printing out
# HG changeset patch # User Alastair Tse <atse@xxxxxxxxxxxxx> # Node ID 5d0efb6f3983bb3659c7d2a5013c8a3a694003ce # Parent e3d62983bc2fa15131143f019a8eaa06b3f3b0fc [XENAPI] Add extra param for VM.start and fix case for printing out the output of VM.get_record. Signed-off-by: Alastair Tse <atse@xxxxxxxxxxxxx> --- tools/python/scripts/xapi.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff -r e3d62983bc2f -r 5d0efb6f3983 tools/python/scripts/xapi.py --- a/tools/python/scripts/xapi.py Fri Dec 01 17:30:39 2006 +0000 +++ b/tools/python/scripts/xapi.py Fri Dec 01 17:31:30 2006 +0000 @@ -29,7 +29,7 @@ MB = 1024 * 1024 MB = 1024 * 1024 HOST_INFO_FORMAT = '%-20s: %-50s' -VM_LIST_FORMAT = '%(name_label)-18s %(memory_actual)-5s %(vcpus_number)-5s'\ +VM_LIST_FORMAT = '%(name_label)-18s %(memory_actual)-5s %(VCPUs_number)-5s'\ ' %(power_state)-10s %(uuid)-36s' SR_LIST_FORMAT = '%(name_label)-18s %(uuid)-36s %(physical_size)-10s' \ '%(type)-10s' @@ -226,7 +226,7 @@ def xapi_vm_list(*args): if not is_long: print VM_LIST_FORMAT % {'name_label':'Name', 'memory_actual':'Mem', - 'vcpus_number': 'VCPUs', + 'VCPUs_number': 'VCPUs', 'power_state': 'State', 'uuid': 'UUID'} @@ -286,7 +286,7 @@ def xapi_vm_start(*args): server, session = _connect() vm_uuid = resolve_vm(server, session, args[0]) print 'Starting VM %s (%s)' % (args[0], vm_uuid) - success = execute(server.VM.start, session, vm_uuid) + success = execute(server.VM.start, session, vm_uuid, False) print 'Done.' def xapi_vm_shutdown(*args): _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |