Skip to content
Snippets Groups Projects
Unverified Commit edd5fce5 authored by Jonathan's avatar Jonathan Committed by GitHub
Browse files

Merge pull request #123 from guest715/master

Two fixes
parents 8855e40c adcd8883
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ define freeradius::module::files ( ...@@ -10,7 +10,7 @@ define freeradius::module::files (
Optional[String] $usersfile = undef, Optional[String] $usersfile = undef,
Optional[String] $acctusersfile = undef, Optional[String] $acctusersfile = undef,
Optional[String] $preproxy_usersfile = undef, Optional[String] $preproxy_usersfile = undef,
Array[Hash] $users = [], Array $users = [],
Optional[String] $source = undef, Optional[String] $source = undef,
Optional[String] $content = undef, Optional[String] $content = undef,
) { ) {
......
...@@ -543,7 +543,7 @@ eap { ...@@ -543,7 +543,7 @@ eap {
tmpdir = <%= @tls_tmpdir %> tmpdir = <%= @tls_tmpdir %>
<%- end -%> <%- end -%>
<%- if @tls_client -%> <%- if @tls_verify_client -%>
# The command used to verify the client cert. # The command used to verify the client cert.
# We recommend using the OpenSSL command-line # We recommend using the OpenSSL command-line
# tool. # tool.
...@@ -556,7 +556,7 @@ eap { ...@@ -556,7 +556,7 @@ eap {
# in PEM format. This file is automatically # in PEM format. This file is automatically
# deleted by the server when the command # deleted by the server when the command
# returns. # returns.
client = "<%= @tls_client %>" client = "<%= @tls_verify_client %>"
<%- end -%> <%- end -%>
} }
......
...@@ -6,8 +6,8 @@ ...@@ -6,8 +6,8 @@
<%- replies = user['reply_items'] ? user['reply_items'] : [] -%> <%- replies = user['reply_items'] ? user['reply_items'] : [] -%>
<%= user['login'] %> <%= checks.join(", ") %> <%= user['login'] %> <%= checks.join(", ") %>
<%= "\t" + replies.join(",\n\t") %> <%= "\t" + replies.join(",\n\t") %>
<%- else -%> <%- else -%>
<%= user %> <%= user %>
<%- end -%> <%- end -%>
<%- end -%> <%- end -%>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment