Created
April 25, 2014 12:47
-
-
Save pmauduit/11288445 to your computer and use it in GitHub Desktop.
Vagrant provision with puppet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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