mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
Merge branch 'check-vmx-libvirt' into 'master'
Use Qemu instead of KVM when we don't have VMX/SVM See merge request !282
This commit is contained in:
commit
e36864e4f0
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