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
44
|
# File 'manifests/init.pp', line 24
class tomcat (
String $catalina_home = '/opt/apache-tomcat',
String[1] $user = 'tomcat',
String[1] $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 $facts['os']['family'] {
'windows','Solaris','Darwin': {
fail("Unsupported osfamily: ${facts['os']['family']}")
}
default: {
# Empty
}
}
}
|