Updated Branches: refs/heads/master 6ce16d95a -> b6f23e89c
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 Project: http://git-wip-us.apache.org/repos/asf/thrift/repo Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/b6f23e89 Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/b6f23e89 Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/b6f23e89 Branch: refs/heads/master Commit: b6f23e89cd5803395280e312fa4ee04751edc0e1 Parents: 6ce16d9 Author: jfarrell <[email protected]> Authored: Fri Jun 21 13:36:18 2013 -0500 Committer: jfarrell <[email protected]> Committed: Fri Jun 21 13:36:18 2013 -0500 ---------------------------------------------------------------------- contrib/Vagrantfile | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/thrift/blob/b6f23e89/contrib/Vagrantfile ---------------------------------------------------------------------- diff --git a/contrib/Vagrantfile b/contrib/Vagrantfile index 880d492..cf54311 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
