summaryrefslogtreecommitdiff
path: root/contrib/Vagrantfile
diff options
context:
space:
mode:
authorjfarrell <jfarrell@apache.org>2013-06-21 13:36:18 -0500
committerjfarrell <jfarrell@apache.org>2013-06-21 13:36:18 -0500
commitb6f23e89cd5803395280e312fa4ee04751edc0e1 (patch)
treefb1fc7f531517d21ba0890223815290fb0b3e7f1 /contrib/Vagrantfile
parent6ce16d95a4e543f5c930d5518d5f1db1263b0333 (diff)
downloadthrift-b6f23e89cd5803395280e312fa4ee04751edc0e1.tar.gz
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
Diffstat (limited to 'contrib/Vagrantfile')
-rw-r--r--contrib/Vagrantfile5
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/Vagrantfile b/contrib/Vagrantfile
index 880d492ed..cf54311bd 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