Created
October 4, 2011 19:15
-
-
Save andyfowler/1262509 to your computer and use it in GitHub Desktop.
cpu_count in Vagrant
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
Vagrant::Config.run do |config| | |
config.vm.box = "natty" | |
config.vm.customize do |vm| | |
vm.memory_size = 2048 | |
vm.cpu_count = 2 # this. | |
end | |
config.vm.share_folder 'aptcache', '/var/cache/apt', '/var/cache/apt' # and this | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment