Sha256: db88bb5b8b7d7b2d02576774809f91a287ce780df4d847fa3a9952f9504f80eb

Contents?: true

Size: 499 Bytes

Versions: 11

Compression:

Stored size: 499 Bytes

Contents

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  => Service['httpd'],
  }
}

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
freighthop-0.6.1 modules/apache/manifests/mod/authnz_ldap.pp
freighthop-0.6.0 modules/apache/manifests/mod/authnz_ldap.pp
freighthop-0.5.2 modules/apache/manifests/mod/authnz_ldap.pp
freighthop-0.5.1 modules/apache/manifests/mod/authnz_ldap.pp
freighthop-0.5.0 modules/apache/manifests/mod/authnz_ldap.pp
freighthop-0.4.1 modules/apache/manifests/mod/authnz_ldap.pp
freighthop-0.4.0 modules/apache/manifests/mod/authnz_ldap.pp
freighthop-0.3.3 modules/apache/manifests/mod/authnz_ldap.pp
freighthop-0.3.2 modules/apache/manifests/mod/authnz_ldap.pp
freighthop-0.3.1 modules/apache/manifests/mod/authnz_ldap.pp
freighthop-0.3.0 modules/apache/manifests/mod/authnz_ldap.pp