Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
puppet-freeradius
Commits
f528e585
Commit
f528e585
authored
Aug 22, 2018
by
Charl Möller
Browse files
Allow use of ca_path in ldap module
parent
685c4dc7
Changes
2
Hide whitespace changes
Inline
Side-by-side
manifests/module/ldap.pp
View file @
f528e585
...
...
@@ -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 @
f528e585
...
...
@@ -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
.
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