diff --git a/Vagrantfile b/Vagrantfile index 991e5d88c..fac9586fa 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -18,13 +18,15 @@ # Vagrantfile for cgroup2 and SELinux Vagrant.configure("2") do |config| config.vm.box = "fedora/32-cloud-base" + memory = 4096 + cpus = 2 config.vm.provider :virtualbox do |v| - v.memory = 2048 - v.cpus = 2 + v.memory = memory + v.cpus = cpus end config.vm.provider :libvirt do |v| - v.memory = 2048 - v.cpus = 2 + v.memory = memory + v.cpus = cpus end # Disabled by default. To run: