New option: require KVM. If false, Qemu VMs will not be prevented to run without KVM.

This commit is contained in:
grossmj
2017-11-19 12:39:37 +07:00
parent 068077c594
commit 3e2e8e61f7
3 changed files with 8 additions and 1 deletions

View File

@ -1624,7 +1624,10 @@ class QemuVM(BaseNode):
return False
if not os.path.exists("/dev/kvm"):
raise QemuError("KVM acceleration cannot be used (/dev/kvm doesn't exist). You can turn off KVM support in the gns3_server.conf by adding enable_kvm = false to the [Qemu] section.")
if self.manager.config.get_section_config("Qemu").getboolean("require_kvm", True):
raise QemuError("KVM acceleration cannot be used (/dev/kvm doesn't exist). You can turn off KVM support in the gns3_server.conf by adding enable_kvm = false to the [Qemu] section.")
else:
return False
return True
return False