Puppet Class: tomcat
- Defined in:
-
manifests/init.pp
Summary
Class to manage installation and configuration of Tomcat.
Overview
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# File 'manifests/init.pp', line 24
class tomcat (
$catalina_home = '/opt/apache-tomcat',
$user = 'tomcat',
$group = 'tomcat',
Boolean $purge_connectors = false,
Boolean $purge_realms = false,
Boolean $manage_user = true,
Boolean $manage_group = true,
Boolean $manage_home = true,
Boolean $manage_base = true,
Boolean $manage_properties = true,
) {
case $::osfamily {
'windows','Solaris','Darwin': {
fail("Unsupported osfamily: ${::osfamily}")
}
default: { }
}
}
|