Added support for mod_include for SSI

This commit is contained in:
Lari Huttunen 2011-08-26 17:32:21 +03:00 committed by Timo Mkinen
parent 4e2e941dd4
commit c3d5784660

View file

@ -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.
#