diff mbox series

[2/2] support/misc/Vagrantfile: support libvirt provider

Message ID 20240909152748.3876779-2-peter@korsgaard.com
State Accepted
Headers show
Series [1/2] support/misc/Vagrantfile: move to Debian bullseyes (12) | expand

Commit Message

Peter Korsgaard Sept. 9, 2024, 3:27 p.m. UTC
And configure memory/CPU like for the other providers.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 support/misc/Vagrantfile | 5 +++++
 1 file changed, 5 insertions(+)
diff mbox series

Patch

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'