summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuviPanda <yuvipanda@gmail.com>2015-07-12 23:06:38 -0400
committerYuviPanda <yuvipanda@gmail.com>2015-07-14 09:21:15 -0400
commitf1263dc48510c92366a1203beec84e9fd27e1c46 (patch)
tree4de14fa8bbbf325834d7c2603cae7ad612e90c1c
parentec24733308676d6822aaeaae6c17b042f7e2bf14 (diff)
vagrant: Increase Memory to 1GB
leap_cli running puppet fails from lack of memory with the default amount of RAM
-rw-r--r--Vagrantfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 18590a8f..16f973cb 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -8,6 +8,7 @@ Vagrant.configure("2") do |config|
config.vm.box = "LEAP/wheezy"
#config.vm.network :private_network, ip: "10.5.5.102"
config.vm.provider "virtualbox" do |v|
+ v.memory = 1024
v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
v.name = "node1"
end