Changed to not force default netvm in Create New VM

To avoid conflict with scripts that make whonix magic,
if the user selects default netvm, we do not set any  netvm and
trust the create_vm method to properly set it as default appropriate
for the given template.

fixes QubesOS/qubes-issues#1954
This commit is contained in:
Marta Marczykowska-Górecka 2018-12-08 23:09:39 +01:00
parent 334fefe559
commit fa6db59ba3
No known key found for this signature in database
GPG Key ID: 9A752C30B26FD04B

View File

@ -154,7 +154,8 @@ class NewVmDlg(QtGui.QDialog, Ui_NewVMDlg):
properties = {}
properties['provides_network'] = self.provides_network.isChecked()
properties['netvm'] = self.netvm_list[self.netvm.currentIndex()]
if self.netvm.currentIndex() != 0:
properties['netvm'] = self.netvm_list[self.netvm.currentIndex()]
if self.install_system.isChecked():
properties['virt_mode'] = 'hvm'
properties['kernel'] = None