Skip to content
Snippets Groups Projects
Commit f528e585 authored by Charl Möller's avatar Charl Möller
Browse files

Allow use of ca_path in ldap module

parent 685c4dc7
Branches
Tags 4.5
No related merge requests found
...@@ -48,6 +48,7 @@ define freeradius::module::ldap ( ...@@ -48,6 +48,7 @@ define freeradius::module::ldap (
String $ldap_debug = '0x0028', String $ldap_debug = '0x0028',
Freeradius::Boolean $starttls = 'no', Freeradius::Boolean $starttls = 'no',
Optional[String] $cafile = undef, Optional[String] $cafile = undef,
Optional[String] $capath = undef,
Optional[String] $certfile = undef, Optional[String] $certfile = undef,
Optional[String] $keyfile = undef, Optional[String] $keyfile = undef,
Optional[String] $random_file = undef, Optional[String] $random_file = undef,
......
...@@ -575,7 +575,9 @@ ldap <%= @name %> { ...@@ -575,7 +575,9 @@ ldap <%= @name %> {
<% if @cafile -%> <% if @cafile -%>
ca_file = <%= @cafile %> ca_file = <%= @cafile %>
<% end -%> <% end -%>
# ca_path = ${certdir} <% if @capath -%>
ca_path = <%= @capath %>
<% end -%>
<% if @certfile -%> <% if @certfile -%>
certificate_file = <%= @certfile %> certificate_file = <%= @certfile %>
<% end -%> <% end -%>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment