From ece9e2a17eb6c961805955b95627785291500226 Mon Sep 17 00:00:00 2001 From: Kyle Robbertze Date: Tue, 21 Sep 2021 10:39:23 +0200 Subject: [PATCH] use 1Gb of RAM on libvirt --- Vagrantfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 7356a97bf..f0dc65a67 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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 "