From 75b543880ceaeb8ff039b0cf3a2ba3e1d38aba37 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Mon, 9 Sep 2024 17:27:47 +0200 Subject: [PATCH] support/misc/Vagrantfile: support libvirt provider And configure memory/CPU like for the other providers. Signed-off-by: Peter Korsgaard Signed-off-by: Thomas Petazzoni --- support/misc/Vagrantfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/support/misc/Vagrantfile b/support/misc/Vagrantfile index 8252f555b6..1155026ee3 100644 --- a/support/misc/Vagrantfile +++ b/support/misc/Vagrantfile @@ -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'