support/misc/Vagrantfile: support libvirt provider

And configure memory/CPU like for the other providers.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Peter Korsgaard
2024-09-09 17:27:47 +02:00
committed by Thomas Petazzoni
parent 6cedd92744
commit 75b543880c

View File

@@ -29,6 +29,11 @@ Vagrant.configure('2') do |config|
end
end
config.vm.provider :libvirt do |v, override|
v.memory = VM_MEMORY
v.cpus = VM_CORES
end
config.vm.provision 'shell' do |s|
s.inline = 'echo Setting up machine name'