Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
puppet-freeradius
Commits
84057ce3
Commit
84057ce3
authored
Oct 08, 2018
by
Jonathan Gazeley
Browse files
Merge branch 'master' of github.com:djjudas21/puppet-freeradius
parents
391cc633
8acdf372
Changes
3
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
84057ce3
...
...
@@ -699,6 +699,9 @@ Path to CA cert file for TLS
##### `
certfile
`
Path to cert file for TLS
##### `
capath
`
Path to CA cert files for TLS
##### `
keyfile
`
Path to key file for TLS
...
...
manifests/module/ldap.pp
View file @
84057ce3
...
...
@@ -48,6 +48,7 @@ define freeradius::module::ldap (
String
$ldap_debug
=
'0x0028'
,
Freeradius
::
Boolean
$starttls
=
'no'
,
Optional
[
String
]
$cafile
=
undef
,
Optional
[
String
]
$capath
=
undef
,
Optional
[
String
]
$certfile
=
undef
,
Optional
[
String
]
$keyfile
=
undef
,
Optional
[
String
]
$random_file
=
undef
,
...
...
templates/ldap.erb
View file @
84057ce3
...
...
@@ -575,7 +575,9 @@ ldap <%= @name %> {
<%
if
@cafile
-%>
ca_file =
<%=
@cafile
%>
<%
end
-%>
# ca_path = ${certdir}
<%
if
@capath
-%>
ca_path =
<%=
@capath
%>
<%
end
-%>
<%
if
@certfile
-%>
certificate_file =
<%=
@certfile
%>
<%
end
-%>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment