Skip to content

Instantly share code, notes, and snippets.

@pmauduit
Created April 25, 2014 12:47
Show Gist options
  • Save pmauduit/11288445 to your computer and use it in GitHub Desktop.
Save pmauduit/11288445 to your computer and use it in GitHub Desktop.
Vagrant provision with puppet
Exec {
path => '/usr/bin:/usr/local/bin:/usr/sbin:/bin:/sbin:/usr/local/sbin'
}
include tomcat
tomcat::instance {'debug-jni':
ensure => present,
http_port => '8080',
}
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "debian-7-amd64-c2c"
config.vm.provision "puppet" do |puppet|
puppet.module_path = "modules"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment