Merge remote-tracking branch 'qubesos/pr/80'

* qubesos/pr/80:
  qvm-check: s/stdout/stderr/
This commit is contained in:
Marek Marczykowski-Górecki 2016-11-28 12:58:28 +01:00
commit 71243d949e
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -52,30 +52,30 @@ Specify no state options to check if VM exists"""
vm = qvm_collection.get_vm_by_name(vmname) vm = qvm_collection.get_vm_by_name(vmname)
if vm is None: if vm is None:
if options.verbose: 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) exit(1)
elif options.running: elif options.running:
vm_state = not vm.is_running() vm_state = not vm.is_running()
if options.verbose: 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) exit(vm_state)
elif options.paused: elif options.paused:
vm_state = not vm.is_paused() vm_state = not vm.is_paused()
if options.verbose: 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) exit(vm_state)
elif options.template: elif options.template:
vm_state = not vm.is_template() vm_state = not vm.is_template()
if options.verbose: 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) exit(vm_state)
else: else:
if options.verbose: 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) exit(0)
main() main()