From 9700b59cf8b82a9b63cdb1c642f3018fd27fe1d6 Mon Sep 17 00:00:00 2001 From: David Duque Date: Sat, 10 Sep 2022 16:07:37 +0100 Subject: [PATCH] Bump test machine RAM allocation * Fixes kernel panics on Jammy Jellyfish --- Vagrantfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 7f214a5..f4dc734 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -24,15 +24,15 @@ machines = [ Vagrant.configure("2") do |config| config.vm.provider :virtualbox do |vb| - vb.customize ["modifyvm", :id, "--cpus", 1, "--memory", 512] + vb.customize ["modifyvm", :id, "--cpus", 1, "--memory", 768] end config.vm.provider :libvirt do |v| - v.memory = 512 + v.memory = 768 v.cpus = 1 v.nested = true end config.vm.provider :kvm do |kvm| - kvm.memory_size = '512m' + kvm.memory_size = '768m' end # Network config: Since it's a mail server, the machine must be connected