Skip to content

Instantly share code, notes, and snippets.

@sirbrillig
Created April 21, 2013 22:37
Show Gist options
  • Save sirbrillig/5431347 to your computer and use it in GitHub Desktop.
Save sirbrillig/5431347 to your computer and use it in GitHub Desktop.
Vagrantfile for local Ubuntu server with puppet and librarian-puppet.
Vagrant.configure("2") do |config|
config.vm.box = "precise32"
config.vm.box_url = "http://files.vagrantup.com/precise32.box"
config.vm.network :public_network
config.vm.provision :shell, :path => "deploy-puppet.sh"
config.vm.provision :puppet do |puppet|
puppet.module_path = "modules"
puppet.manifests_path = "manifests"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment