]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - 3rdparty/modules/apache/manifests/mod/authnz_ldap.pp
remove all openstack foo
[dsa-puppet.git] / 3rdparty / modules / apache / manifests / mod / authnz_ldap.pp
diff --git a/3rdparty/modules/apache/manifests/mod/authnz_ldap.pp b/3rdparty/modules/apache/manifests/mod/authnz_ldap.pp
deleted file mode 100644 (file)
index b75369f..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-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'],
-  }
-}