We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 391085c commit bcb2026Copy full SHA for bcb2026
manifests/init.pp
@@ -24,6 +24,7 @@
24
$min_retry_time = undef,
25
$query_log = undef,
26
$request_ixfr = undef,
27
+ $serial_query_rate = undef,
28
# NOTE: we need to be able to override this parameter when declaring class,
29
# especially when not using hiera (i.e. when using Foreman as ENC):
30
$default_zones_include = $::bind::defaults::default_zones_include,
templates/named.conf.erb
@@ -32,6 +32,9 @@ options {
32
<%- if @request_ixfr -%>
33
request-ixfr <%= @request_ixfr %>;
34
<%- end -%>
35
+<%- if @serial_query_rate -%>
36
+ serial-query-rate <%= @serial_query_rate %>;
37
+<%- end -%>
38
<%- if @transfers_in -%>
39
transfers-in <%= @transfers_in %>;
40
0 commit comments