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
d2885da1
Commit
d2885da1
authored
Oct 23, 2020
by
Nathan Ward
Browse files
Update client.conf and realm templates to not have stray empty lines
parent
0aed640e
Changes
2
Hide whitespace changes
Inline
Side-by-side
templates/client.conf.erb
View file @
d2885da1
client
<%=
@shortname
%>
{
<%
if
@ip
%>
ipaddr =
<%=
@ip
%><%
end
%>
<%
if
@ip6
%>
ipv6addr =
<%=
@ip6
%><%
end
%>
<%
if
@proto
%>
proto =
<%=
@proto
%><%
end
%>
<%-
if
defined?
(
@ip
)
-%>
ipaddr =
<%=
@ip
%>
<%-
end
-%>
<%-
if
defined?
(
@ip6
)
-%>
ipv6addr =
<%=
@ip6
%>
<%-
end
-%>
<%-
if
defined?
(
@proto
)
-%>
proto =
<%=
@proto
%>
<%-
end
-%>
shortname =
<%=
@shortname
%>
secret = "
<%=
@secret
%>
"
<%
if
@virtual_server
%>
virtual_server =
<%=
@virtual_server
%><%
end
%>
<%
if
@nastype
%>
nas_type =
<%=
@nastype
%><%
end
%>
<%
if
@require_message_authenticator
%>
require_message_authenticator =
<%=
@require_message_authenticator
%><%
end
%>
<%
if
@login
%>
login =
<%=
@login
%><%
end
%>
<%
if
@password
%>
password =
<%=
@password
%><%
end
%>
<%
if
@coa_server
%>
coa_server =
<%=
@coa_server
%><%
end
%>
<%
if
@response_window
%>
response_window =
<%=
@response_window
%><%
end
%>
<%-
if
@lifetime
or
@idle_timeout
or
@max_connections
-%>
limit {
<%
if
@max_connections
%>
max_connections =
<%=
@max_connections
%><%
end
%>
<%
if
@lifetime
%>
lifetime =
<%=
@lifetime
%><%
end
%>
<%
if
@idle_timeout
%>
idle_timeout =
<%=
@idle_timeout
%><%
end
%>
}
<%-
end
-%>
<%-
if
@attributes
and
!
@attributes
.
empty?
-%>
<%-
if
@attributes
.
respond_to?
(
'join'
)
-%>
<%=
@attributes
.
join
(
"
\n
"
)
%>
<%-
elsif
@attributes
.
is_a?
(
Hash
)
-%>
<%-
@attributes
.
sort
.
each
do
|
k
,
v
|
-%>
<%=
k
%>
=
<%=
v
%>
<%-
end
-%>
<%-
elsif
@attributes
-%>
<%=
@attributes
%>
<%-
end
-%>
<%-
end
-%>
<%-
if
defined?
(
@virtual_server
)
-%>
virtual_server =
<%=
@virtual_server
%>
<%-
end
-%>
<%-
if
defined?
(
@nastype
)
-%>
nas_type =
<%=
@nastype
%>
<%-
end
-%>
<%-
if
defined?
(
@require_message_authenticator
)
-%>
require_message_authenticator =
<%=
@require_message_authenticator
%>
<%-
end
-%>
<%-
if
defined?
(
@login
)
-%>
login =
<%=
@login
%>
<%-
end
-%>
<%-
if
defined?
(
@password
)
-%>
password =
<%=
@password
%>
<%-
end
-%>
<%-
if
defined?
(
@coa_server
)
-%>
coa_server =
<%=
@coa_server
%>
<%-
end
-%>
<%-
if
defined?
(
@response_window
)
-%>
response_window =
<%=
@response_window
%>
<%-
end
-%>
<%-
if
defined?
(
@lifetime
)
or
@idle_timeout
or
@max_connections
-%>
limit {
<%-
if
defined?
(
@max_connections
)
-%>
max_connections =
<%=
@max_connections
%>
<%-
end
-%>
<%-
if
defined?
(
@lifetime
)
-%>
lifetime =
<%=
@lifetime
-%>
<%-
end
-%>
<%-
if
defined?
(
@idle_timeout
)
-%>
idle_timeout =
<%=
@idle_timeout
%>
<%-
end
-%>
}
<%-
end
-%>
<%-
if
defined?
(
@attributes
)
and
!
@attributes
.
empty?
-%>
<%-
if
defined?
(
@attributes
).
respond_to?
(
'join'
)
-%>
<%=
@attributes
.
join
(
"
\n
"
)
%>
<%-
elsif
defined?
(
@attributes
).
is_a?
(
Hash
)
-%>
<%-
@attributes
.
sort
.
each
do
|
k
,
v
|
-%>
<%=
k
%>
=
<%=
v
%>
<%-
end
-%>
<%-
elsif
defined?
(
@attributes
)
-%>
<%=
@attributes
%>
<%-
end
-%>
<%-
end
-%>
}
templates/realm.erb
View file @
d2885da1
...
...
@@ -10,9 +10,8 @@ realm <%= @name %> {
<%
end
-%>
<%
if
defined?
(
@pool
)
-%>
pool =
<%=
@pool
%>
<%
end
%>
<%
end
-
%>
<%
if
@nostrip
-%>
nostrip
<%
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