Skip to content

Instantly share code, notes, and snippets.

@lorn
Created August 7, 2012 21:09
Show Gist options
  • Save lorn/3289386 to your computer and use it in GitHub Desktop.
Save lorn/3289386 to your computer and use it in GitHub Desktop.
Vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
config.vm.box = "ubuntu_precise"
config.vm.network :hostonly, "192.168.0.10"
config.vm.provision :puppet do |puppet|
puppet.manifests_path = "puppet/manifests"
puppet.manifest_file = "site.pp"
puppet.module_path = "puppet/modules"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment