Skip to content

Commit

Permalink
Is this bug finally dead
Browse files Browse the repository at this point in the history
Yet another attempt at stomp this zombie monstrosity.

fixes QubesOS/qubes-issues#3570
  • Loading branch information
marmarta committed Feb 13, 2018
1 parent 3967d92 commit e95be8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qubesmanager/qube_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def check_if_vm_has_shutdown(self):
self.tr("Wait another {0} seconds...").format(
self.shutdown_time / 1000))
if reply == 0:
vm.force_shutdown()
vm.kill()
self.restart_vm_if_needed()
else:
self.shutdown_started = datetime.now()
Expand Down Expand Up @@ -841,7 +841,7 @@ def action_killvm_triggered(self):

if reply == QtGui.QMessageBox.Yes:
try:
vm.force_shutdown()
vm.kill()
except exc.QubesException as ex:
QtGui.QMessageBox.critical(
None, self.tr("Error while killing Qube!"),
Expand Down

0 comments on commit e95be8a

Please sign in to comment.