use 1Gb of RAM on libvirt

This commit is contained in:
Kyle Robbertze 2021-09-21 10:39:23 +02:00
parent ffb8c49784
commit ece9e2a17e
1 changed files with 5 additions and 0 deletions

5
Vagrantfile vendored
View File

@ -40,6 +40,11 @@ Vagrant.configure("2") do |config|
end
end
config.vm.provider "libvirt" do |v|
# to run without OOMing we need at least 1GB of RAM
v.memory = 1024
end
# default installer args used for all distros
installer_args="--force --in-place --verbose --postgres --apache --icecast "