We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91af30c commit ef3b6c9Copy full SHA for ef3b6c9
manifests/init.pp
@@ -26,6 +26,7 @@
26
$request_ixfr = undef,
27
$serial_query_rate = undef,
28
$server_id = false,
29
+ $max_ncache_ttl = undef,
30
# NOTE: we need to be able to override this parameter when declaring class,
31
# especially when not using hiera (i.e. when using Foreman as ENC):
32
$default_zones_include = $::bind::defaults::default_zones_include,
templates/named.conf.erb
@@ -55,6 +55,9 @@ options {
55
<%- end -%>
56
<%- if @min_retry_time -%>
57
min-retry-time <%= @min_retry_time %>;
58
+<%- end -%>
59
+<%- if @max_ncache_ttl -%>
60
+ max-ncache-ttl <%= @max_ncache_ttl %>;
61
62
auth-nxdomain <%= @auth_nxdomain ? 'yes' : 'no' %>;
63
listen-on-v6 { any; };
0 commit comments