From cf2325a2daa1ba6df1f4095ed450e733eb110bd7 Mon Sep 17 00:00:00 2001 From: Dennis Kliban Date: Mon, 7 Aug 2017 11:03:18 -0400 Subject: [PATCH] vagrant: Increase amount of RAM allocated to boxes backed by libvirt --- Vagrantfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 8e95188f..acc48dec 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -13,6 +13,9 @@ Vagrant.configure(2) do |config| v.memory = 1536 v.cpus = 2 end + config.vm.provider "libvirt" do |v| + v.memory = 2048 + end config.vm.provision "file", source: "vagrant/motd", destination: ".motd" config.vm.provision "shell", inline: "cp ~vagrant/.motd /etc/motd"