apache: Add support for mod_authz_groupfile
This commit is contained in:
parent
0fbddae702
commit
66f8bf25e2
1 changed files with 19 additions and 0 deletions
|
@ -559,6 +559,24 @@ class apache::mod::authnz_ldap {
|
|||
|
||||
}
|
||||
|
||||
|
||||
# Install mod_authz_groupfile.
|
||||
#
|
||||
class apache::mod::authz_groupfile {
|
||||
|
||||
case $::operatingsystem {
|
||||
"centos","redhat","fedora": { }
|
||||
"ubuntu": {
|
||||
apache::ubuntu::a2enmod { "authz_groupfile": }
|
||||
}
|
||||
default: {
|
||||
fail("Apache module not supported in ${::operatingsystem}.")
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
# Install mod_include
|
||||
#
|
||||
class apache::mod::include {
|
||||
|
@ -575,6 +593,7 @@ class apache::mod::include {
|
|||
|
||||
}
|
||||
|
||||
|
||||
# Install mod_fcgid.
|
||||
#
|
||||
# === Parameters
|
||||
|
|
Loading…
Add table
Reference in a new issue