Skip to content

Commit

Permalink
Merge pull request #911 from mcanevet/fix/el7/mod_authnz_ldap
Browse files Browse the repository at this point in the history
Fix authnz_ldap package name on el7
  • Loading branch information
igalic committed Oct 28, 2014
2 parents cdc3680 + e02a4d5 commit 2a68983
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@
# NOTE: The module for Shibboleth is not available to RH/CentOS without an additional repository. http://wiki.aaf.edu.au/tech-info/sp-install-guide
$mod_packages = {
'auth_kerb' => 'mod_auth_kerb',
'authnz_ldap' => 'mod_authz_ldap',
'authnz_ldap' => $::apache::version::distrelease ? {
'7' => 'mod_ldap',
default => 'mod_authz_ldap',
},
'fastcgi' => 'mod_fastcgi',
'fcgid' => 'mod_fcgid',
'pagespeed' => 'mod-pagespeed-stable',
Expand Down

0 comments on commit 2a68983

Please sign in to comment.