Vagrantfile: set a lower memory bound of 4096 MB

This commit is contained in:
Andrew Eikum 2020-04-21 07:59:47 -05:00
parent 51d29f3457
commit 16c6c2756a

1
Vagrantfile vendored
View file

@ -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|