Code Review
/
common
/
thrift.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
6ce16d9
)
Thrift-2052: Vagrant machine image defaults to only 384MB RAM
author
jfarrell
<jfarrell@apache.org>
Fri, 21 Jun 2013 18:36:18 +0000
(13:36 -0500)
committer
jfarrell
<jfarrell@apache.org>
Fri, 21 Jun 2013 18:36:18 +0000
(13:36 -0500)
Client: build
Patch: Justin Porterfield
Updates min ram to 1G and sets num cpus to 2
contrib/Vagrantfile
patch
|
blob
|
history
diff --git
a/contrib/Vagrantfile
b/contrib/Vagrantfile
index
880d492
..
cf54311
100644
(file)
--- 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