Guest User

Untitled

a guest
Nov 23rd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. Place the following in your `Vagrantfile`.
  2.  
  3. ```
  4. Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  5. config.vm.provider "virtualbox" do |vb|
  6. vb.memory = 1024
  7. vb.cpus = 2
  8. vb.customize ["modifyvm", :id, "--cpuexecutioncap", "40"]
  9. end
  10. end
  11. ```
  12.  
  13. Run `vagrant reload` to propagate changes.
Add Comment
Please, Sign In to add comment