vagrant: Increase amount of RAM allocated to boxes backed by libvirt

This commit is contained in:
Dennis Kliban
2017-08-07 11:03:18 -04:00
parent db6972638d
commit cf2325a2da

3
Vagrantfile vendored
View File

@@ -13,6 +13,9 @@ Vagrant.configure(2) do |config|
v.memory = 1536 v.memory = 1536
v.cpus = 2 v.cpus = 2
end end
config.vm.provider "libvirt" do |v|
v.memory = 2048
end
config.vm.provision "file", source: "vagrant/motd", destination: ".motd" config.vm.provision "file", source: "vagrant/motd", destination: ".motd"
config.vm.provision "shell", inline: "cp ~vagrant/.motd /etc/motd" config.vm.provision "shell", inline: "cp ~vagrant/.motd /etc/motd"