Puppet Class: apache::mod::ldap
- Defined in:
- manifests/mod/ldap.pp
Summary
Installs and configures `mod_ldap`.Overview
Note:
Unsupported platforms: CentOS: 8; RedHat: 8, 9
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'manifests/mod/ldap.pp', line 51
class apache::mod::ldap (
Optional[String] $apache_version = undef,
Optional[String] $package_name = undef,
Optional[String] $ldap_trusted_global_cert_file = undef,
String $ldap_trusted_global_cert_type = 'CA_BASE64',
Optional[Integer] $ldap_shared_cache_size = undef,
Optional[Integer] $ldap_cache_entries = undef,
Optional[Integer] $ldap_cache_ttl = undef,
Optional[Integer] $ldap_opcache_entries = undef,
Optional[Integer] $ldap_opcache_ttl = undef,
Optional[String] $ldap_trusted_mode = undef,
String $ldap_path = '/ldap-status',
) {
include apache
$_apache_version = pick($apache_version, $apache::apache_version)
::apache::mod { 'ldap':
package => $package_name,
}
# Template uses $_apache_version
file { 'ldap.conf':
ensure => file,
path => "${apache::mod_dir}/ldap.conf",
mode => $apache::file_mode,
content => template('apache/mod/ldap.conf.erb'),
require => Exec["mkdir ${apache::mod_dir}"],
before => File[$apache::mod_dir],
notify => Class['apache::service'],
}
}
|