Add other options

This commit is contained in:
Bradley Koby
2016-06-17 11:43:47 -04:00
parent e45997b7ce
commit 3dbff6a66d
3 changed files with 10 additions and 0 deletions

View File

@ -32,6 +32,14 @@ tls_cacertfile <%= @ldap_tls_cacertfile %>
# The search scope.
scope <%= @ldap_search_scope %>
<% @config_options.sort.each do |k,v| -%>
<% Array(v).each do |av| -%>
<% if ![nil, '', :undef].include?(av) -%>
<%= %Q(#{k} #{av}) %>
<% end -%>
<% end -%>
<% end -%>
<% if @ldap_filters.length > 0 -%>
# Custom search filters
<% @ldap_filters.each do |map, filter| -%>