Skip to content

Instantly share code, notes, and snippets.

@zipkid
Created August 31, 2012 11:25
Show Gist options
  • Save zipkid/3551672 to your computer and use it in GitHub Desktop.
Save zipkid/3551672 to your computer and use it in GitHub Desktop.
Vagrant::Config.run do |config|
config.vm.box = "CentOS-6.0-x86_64-VB-4.1.8"
config.ssh.max_tries = 50
config.ssh.timeout = 300
config.vm.network :hostonly, "192.168.11.44"
config.vm.customize ["modifyvm", :id, "--memory", "380"]
config.vm.customize ["modifyvm", :id, "--name", "jolokia"]
config.vm.provision :puppet do |puppet|
puppet.manifests_path = "manifests"
puppet.manifest_file = "puppet.pp"
puppet.module_path = "../../../puppet-zipkid/modules"
end
#config.vm.boot_mode = :gui
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment