From b6f23e89cd5803395280e312fa4ee04751edc0e1 Mon Sep 17 00:00:00 2001 From: jfarrell Date: Fri, 21 Jun 2013 13:36:18 -0500 Subject: [PATCH] Thrift-2052: Vagrant machine image defaults to only 384MB RAM Client: build Patch: Justin Porterfield Updates min ram to 1G and sets num cpus to 2 --- contrib/Vagrantfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/contrib/Vagrantfile b/contrib/Vagrantfile index 880d492e..cf54311b 100644 --- a/contrib/Vagrantfile +++ b/contrib/Vagrantfile @@ -54,6 +54,11 @@ Vagrant.configure("2") do |config| config.vm.synced_folder "../", "/thrift" + config.vm.provider :virtualbox do |vbox| + vbox.customize ["modifyvm", :id, "--memory", "1024"] + vbox.customize ["modifyvm", :id, "--cpus", "2"] + end + # call the script config.vm.provision :shell, :inline => $script end -- 2.17.1