Browse Source

Merge pull request #1443 from LadyMozzarella/update-vagrant-scripts

Vagrant: Fix Typo, Increase Memory
Hamilton Turner 10 years ago
parent
commit
a6c26f1902
2 changed files with 2 additions and 2 deletions
  1. 1 1
      deployment/vagrant-common/checks.rb
  2. 1 1
      deployment/vagrant-common/core.rb

+ 1 - 1
deployment/vagrant-common/checks.rb

@@ -81,7 +81,7 @@ To workaround, consider using the Amazon (e.g. AWS) provider
    $ vagrant up --provider=aws
 
 Or forcing FrameworkBenchmarks to attempt a 32-bit VM
-   $ TFB_VM_ARCH=32 vagrant up
+   $ TFB_VB_ARCH=32 vagrant up
   
   See http://askubuntu.com/questions/41550 for more info\033[0m"
 

+ 1 - 1
deployment/vagrant-common/core.rb

@@ -95,7 +95,7 @@ def provider_virtualbox(config, role, ip_address='172.16.0.16')
       vb.gui = true
     end
 
-    vb.memory = ENV.fetch('TFB_VB_MEM', 2048)
+    vb.memory = ENV.fetch('TFB_VB_MEM', 3022)
     vb.cpus = ENV.fetch('TFB_VB_CPU', 2)
 
     # mount_options addresses issue mitchellh/vagrant#4997