diff --git a/apache/manifests/init.pp b/apache/manifests/init.pp index c6ac505..e68ed45 100644 --- a/apache/manifests/init.pp +++ b/apache/manifests/init.pp @@ -392,6 +392,21 @@ class apache::mod::authnz_ldap { } +# Install mod_include +# +class apache::mod::include { + + case $operatingsystem { + debian,ubuntu: { + apache::debian::a2enmod { "include": } + } + centos,fedora: { } + default: { + fail("Apache module not supported in ${operatingsystem}.") + } + } + +} # Install mod_fcgid. #