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
diff --git a/contrib/Vagrantfile b/contrib/Vagrantfile
index 880d492..cf54311 100644
--- a/contrib/Vagrantfile
+++ b/contrib/Vagrantfile
@@ -54,6 +54,11 @@
 
   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