Skip to content

Instantly share code, notes, and snippets.

@JimBTek
Created August 26, 2013 12:02
Show Gist options
  • Save JimBTek/6340754 to your computer and use it in GitHub Desktop.
Save JimBTek/6340754 to your computer and use it in GitHub Desktop.
vagrantfile that keeps resetting the vm
Vagrant::Config.run do |config|
config.vm.box = 'precise32'
config.vm.box_url = 'http://files.vagrantup.com/precise32.box'
config.vm.host_name = 'box'
config.vm.forward_port 3000, 3000
config.vm.provision :puppet,
:manifests_path => 'puppet/manifests',
:module_path => 'puppet/modules'
config.ssh.forward_agent = true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment