-
-
Notifications
You must be signed in to change notification settings - Fork 197
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
fix for issue #297, adding the path for the ldap auth plugin on CentOS 7 #300
Conversation
manifests/params.pp
Outdated
@@ -30,7 +30,7 @@ | |||
case $facts['os']['release']['major'] { | |||
'7': { | |||
$additional_packages = ['easy-rsa'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this now also be $additional_packages = ['easy-rsa','openvpn-auth-ldap']
for EL7 as well as EL6?
(If these parameters are now the same on EL6 and EL7, they can also be moved out of this case statement).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did EL7 packages become available some time after #215 ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like the openvpn-auth-ldap package is now available in the repo for EL7. Will amend the PR.
manifests/params.pp
Outdated
@@ -30,7 +30,7 @@ | |||
case $facts['os']['release']['major'] { | |||
'7': { | |||
$additional_packages = ['easy-rsa'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did EL7 packages become available some time after #215 ?
Looks related with issue #172 |
openvpn-auth-ldap is definately available in epel 7 these days. No idea since when though. |
…lock, as EL7 are now the same as EL6.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi sorry for delay and thank you for the PR.
Rebase is now needed.
Take care that module is now using hiera data and so params.pp
is removed.
Oups ? why closed ? |
Pull Request (PR) description
A fix for the malformed config file on CentOS 7 when using the LDAP auth plugin.
This Pull Request (PR) fixes the following issues
Fixes #297