Skip to content

Instantly share code, notes, and snippets.

@hdep
Created February 26, 2016 10:19
Show Gist options
  • Select an option

  • Save hdep/61c3e6a109188ad96747 to your computer and use it in GitHub Desktop.

Select an option

Save hdep/61c3e6a109188ad96747 to your computer and use it in GitHub Desktop.
appconf.pp
define tomcat::appconf(
$app_name = undef,
) {
file
{
"/applis/app/appconf":
ensure => directory,
path => "/applis/app/appconf/",
mode => 644,
owner => root,
group => root,
source => "puppet:///modules/tomcat/appconf/$app_name/",
recurse => true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment