Puppet Class: apache::mod::authnz_ldap

Defined in:
manifests/mod/authnz_ldap.pp

Overview

Parameters:

  • verifyServerCert (Any) (defaults to: true)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'manifests/mod/authnz_ldap.pp', line 1

class apache::mod::authnz_ldap (
  $verifyServerCert = true,
) {
  include '::apache::mod::ldap'
  ::apache::mod { 'authnz_ldap': }

  validate_bool($verifyServerCert)

  # Template uses:
  # - $verifyServerCert
  file { 'authnz_ldap.conf':
    ensure  => file,
    path    => "${::apache::mod_dir}/authnz_ldap.conf",
    content => template('apache/mod/authnz_ldap.conf.erb'),
    require => Exec["mkdir ${::apache::mod_dir}"],
    before  => File[$::apache::mod_dir],
    notify  => Class['apache::service'],
  }
}