Puppet Class: pacemaker::apache::ssl
- Defined in:
- manifests/apache/ssl.pp
Overview
Class: pacemaker::apache::ssl
Companion class for pacemaker::apache
Requires:
-
apache’s puppet module
Example usage:
include pacemaker::apache
include pacemaker::apache::ssl
apache_c2c::vhost {$fqdn: ensure => present }
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'manifests/apache/ssl.pp', line 13
class pacemaker::apache::ssl {
case $::operatingsystem {
'RedHat': {
include ::apache_c2c::ssl::redhat
}
'Debian': {
include ::apache_c2c::ssl::debian
}
default: {
fail "Unsupported Operating System: ${::operatingsystem}"
}
}
}
|