Join all connected VM's in same warning

This commit is contained in:
donoban 2021-02-16 21:28:32 +01:00
parent 28120f3a8f
commit 7a0bc9b863
No known key found for this signature in database
GPG Key ID: 141310D8E3ED08A5

View File

@ -1246,10 +1246,17 @@ class VmManagerWindow(ui_qubemanager.Ui_VmManagerWindow, QMainWindow):
if reply == QMessageBox.Yes: if reply == QMessageBox.Yes:
self.shutdown_vm(vm) self.shutdown_vm(vm)
def get_connected_vms(self, vm, connected_vms):
for connected_vm in vm.connected_vms:
if connected_vm.is_running():
connected_vms.append(connected_vm)
self.get_connected_vms(connected_vm, connected_vms)
def shutdown_vm(self, vm, shutdown_time=vm_shutdown_timeout, def shutdown_vm(self, vm, shutdown_time=vm_shutdown_timeout,
check_time=vm_restart_check_timeout, and_restart=False): check_time=vm_restart_check_timeout, and_restart=False):
try: try:
connected_vms = [x for x in vm.connected_vms if x.is_running()] connected_vms = []
self.get_connected_vms(vm, connected_vms)
if len(connected_vms) > 0: if len(connected_vms) > 0:
reply = QMessageBox.question( reply = QMessageBox.question(
@ -1264,8 +1271,7 @@ class VmManagerWindow(ui_qubemanager.Ui_VmManagerWindow, QMainWindow):
return False return False
for connected_vm in connected_vms: for connected_vm in connected_vms:
if not self.shutdown_vm(connected_vm): connected_vm.shutdown(force=True)
return False
vm.shutdown(force=True) vm.shutdown(force=True)
else: else: