From 16c6c2756a26b5b5091adc0b7abc9633fb5deb72 Mon Sep 17 00:00:00 2001 From: Andrew Eikum Date: Tue, 21 Apr 2020 07:59:47 -0500 Subject: [PATCH] Vagrantfile: set a lower memory bound of 4096 MB --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index 7a646a94..ba7569f6 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -35,6 +35,7 @@ else memory = 1024 puts "Vagrant launched from unsupported platform." end +memory = [memory, 4096].max puts "Platform: " + cpus.to_s + " CPUs, " + memory.to_s + " MB memory" Vagrant.configure(2) do |config|