mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
Use Qemu instead of KVM when we don't have VMX/SVM
This commit is contained in:
parent
63fd20fff0
commit
60bb34ef1a
1 changed files with 1 additions and 1 deletions
2
buildserver/Vagrantfile
vendored
2
buildserver/Vagrantfile
vendored
|
@ -29,7 +29,7 @@ Vagrant.configure("2") do |config|
|
|||
elsif configfile["vm_provider"] == "libvirt"
|
||||
# use KVM/QEMU if this is running in KVM/QEMU
|
||||
config.vm.provider :libvirt do |libvirt|
|
||||
libvirt.driver = "kvm"
|
||||
libvirt.driver = configfile["hwvirtex"] == "on" ? "kvm" : "qemu"
|
||||
libvirt.host = "localhost"
|
||||
libvirt.uri = "qemu:///system"
|
||||
libvirt.cpus = configfile["cpus"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue