Skip to content

Instantly share code, notes, and snippets.

@philcryer
Last active August 29, 2015 14:05
Show Gist options
  • Save philcryer/aefce3f8b7df18dc2430 to your computer and use it in GitHub Desktop.
Save philcryer/aefce3f8b7df18dc2430 to your computer and use it in GitHub Desktop.
Vagrantfile for CentOS 6.5
Vagrant.configure("2") do |config|
config.vm.box = "Centos 6.5"
config.vm.box_url = "http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_centos-6.5_chef-provisionerless.box"
config.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", "1024", "--cpus", "1"]
vb.customize ["modifyvm", :id, "--cpuexecutioncap", "95"]
vb.gui = false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment