Merge remote-tracking branch 'qubesos/pr/80'
* qubesos/pr/80: qvm-check: s/stdout/stderr/
This commit is contained in:
commit
71243d949e
@ -52,30 +52,30 @@ Specify no state options to check if VM exists"""
|
||||
vm = qvm_collection.get_vm_by_name(vmname)
|
||||
if vm is None:
|
||||
if options.verbose:
|
||||
print >> sys.stdout, "A VM with the name '{0}' does not exist in the system!".format(vmname)
|
||||
print >> sys.stderr, "A VM with the name '{0}' does not exist in the system!".format(vmname)
|
||||
exit(1)
|
||||
|
||||
elif options.running:
|
||||
vm_state = not vm.is_running()
|
||||
if options.verbose:
|
||||
print >> sys.stdout, "A VM with the name {0} is {1}running.".format(vmname, "not " * vm_state)
|
||||
print >> sys.stderr, "A VM with the name {0} is {1}running.".format(vmname, "not " * vm_state)
|
||||
exit(vm_state)
|
||||
|
||||
elif options.paused:
|
||||
vm_state = not vm.is_paused()
|
||||
if options.verbose:
|
||||
print >> sys.stdout, "A VM with the name {0} is {1}paused.".format(vmname, "not " * vm_state)
|
||||
print >> sys.stderr, "A VM with the name {0} is {1}paused.".format(vmname, "not " * vm_state)
|
||||
exit(vm_state)
|
||||
|
||||
elif options.template:
|
||||
vm_state = not vm.is_template()
|
||||
if options.verbose:
|
||||
print >> sys.stdout, "A VM with the name {0} is {1}a template.".format(vmname, "not " * vm_state)
|
||||
print >> sys.stderr, "A VM with the name {0} is {1}a template.".format(vmname, "not " * vm_state)
|
||||
exit(vm_state)
|
||||
|
||||
else:
|
||||
if options.verbose:
|
||||
print >> sys.stdout, "A VM with the name '{0}' does exist.".format(vmname)
|
||||
print >> sys.stderr, "A VM with the name '{0}' does exist.".format(vmname)
|
||||
exit(0)
|
||||
|
||||
main()
|
||||
|
Loading…
Reference in New Issue
Block a user