Skip to content

Commit

Permalink
bump up cpus to 4 and memory to 1g on the build vm.
Browse files Browse the repository at this point in the history
  • Loading branch information
artclarke committed Nov 9, 2014
1 parent e512aca commit d70130d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,11 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# # Don't boot with headless mode
# vb.gui = true
#
# # Use VBoxManage to customize the VM. For example to change memory:
# vb.customize ["modifyvm", :id, "--memory", "1024"]
# Use VBoxManage to customize the VM. For example to change memory:
vb.customize ["modifyvm", :id, "--ioapic", "on"]
vb.customize ["modifyvm", :id, "--cpus", "4"]
vb.customize ["modifyvm", :id, "--memory", "1024"]
vb.customize ["modifyvm", :id, "--cpuexecutioncap", "80"]
end
#
# View the documentation for the provider you're using for more
Expand Down

0 comments on commit d70130d

Please sign in to comment.