Skip to content

Commit

Permalink
Fix authnz_ldap package name on el7
Browse files Browse the repository at this point in the history
  • Loading branch information
mcanevet committed Oct 23, 2014
1 parent cdc3680 commit e02a4d5
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 e02a4d5

Please sign in to comment.