Commit 28aa5acb authored by Paul's avatar Paul
Browse files

Add support for homeserver check_timeout

parent e1dec8c7
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@ define freeradius::home_server (
  Enum['none', 'status-server', 'request'] $status_check = 'none',
  Enum['auth', 'acct', 'auth+acct', 'coa'] $type         = 'auth',
  Optional[Integer] $check_interval                      = undef,
  Optional[Integer] $check_timeout                       = undef,
  Optional[String] $ipaddr                               = undef,
  Optional[String] $ipv6addr                             = undef,
  Optional[Integer] $max_outstanding                     = undef,
+3 −0
Original line number Diff line number Diff line
@@ -39,6 +39,9 @@ home_server <%= @name %> {
<% if defined?(@check_interval) -%>
    check_interval = <%= @check_interval %>
<% end -%>
<% if defined?(@check_timeout) -%>
    check_timeout = <%= @check_timeout %>
<% end -%>
<% if defined?(@num_answers_to_alive) -%>
    num_answers_to_alive = <%= @num_answers_to_alive %>
<% end -%>