Last active
February 12, 2018 18:49
-
-
Save wizardishungry/2660808 to your computer and use it in GitHub Desktop.
Vagrant snippet to set VirtualBox guest CPU count to the number of host cores on Linux or OS X (broken 2018)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem 'concurrent' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'concurrent' | |
config.vm.provider "virtualbox" do |vb| | |
v.cpus = Concurrent.physical_processor_count | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
updated for 2018