Skip to content

(bugfix) Add default package name for mod_ldap #1913

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jun 17, 2019
Next Next commit
added default package name for mod_ldap
  • Loading branch information
turnopil committed Apr 15, 2019
commit 4cb1b51702cebea459ef9a5da0382e6f00100995
2 changes: 1 addition & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@
'intercept_form_submit' => 'mod_intercept_form_submit',
'ldap' => $::apache::version::distrelease ? {
'7' => 'mod_ldap',
default => undef,
default => 'mod_ldap',
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This makes the selector useless (all path lead to 'ldap' => 'mod_ldap'), it should be removed then.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, you are right

},
'lookup_identity' => 'mod_lookup_identity',
'pagespeed' => 'mod-pagespeed-stable',
Expand Down