-
-
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
Add TLS and x509-name verification support #118
Conversation
maetthu-indermuehle
commented
Jan 8, 2015
- Server config
- Added tls-server and tls-auth parameters to server config template
- Generate TLS key on server while setting up the CA
- Client config
- Link tls key into client config bundle
- Added x509-name parameter to client config template
- Added test for tls and x509-name support in client and server
- Server config - Added tls-server and tls-auth parameters to server config template - Generate TLS key on server while setting up the CA - Client config - Link tls key into client config bundle - Added x509-name parameter to client config template - Added test for tls and x509-name support in client and server
- changed typo in client template - changed typo in documenation of client.pp
- Removed trailing whitespaces in documenation of server.pp
@@ -99,6 +103,7 @@ | |||
$key_cn = '', | |||
$key_name = '', | |||
$key_ou = '', | |||
$tls_auth = 'false', |
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.
Please use a boolean instead of a string here.
Thanks a lot for this contribution! I added some comments directly in the code. |
- Fixed some minor style stuff - Added revese test - Changed some dependencies
Thanks for the Input. I changed the points you mentioned. Except for the ordering. I don't have any good solution there without coping unnecessary code. Do you have any good ideas? |
🔝 |
You are right.... Could you merge master once more as there are merge conflicts? Afterwards we are ready to merge. |
Conflicts: manifests/client.pp spec/defines/openvpn_client_spec.rb
I did a merge to the master. |
Thanks, could you fix the tests? |
- Fixed problem with tls-server parameter in upd setups
I fixed the test. One parameter was set twice. |
Thanks! |
Add TLS and x509-name verification support
Thanks for merging! =) |