We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5e00f5 commit 1970b4eCopy full SHA for 1970b4e
manifests/init.pp
@@ -28,6 +28,7 @@
28
$server_id = false,
29
$max_ncache_ttl = undef,
30
$ixfr_from_differences = undef,
31
+ $send_cookie = true,
32
# NOTE: we need to be able to override this parameter when declaring class,
33
# especially when not using hiera (i.e. when using Foreman as ENC):
34
$default_zones_include = $::bind::defaults::default_zones_include,
templates/named.conf.erb
@@ -53,6 +53,9 @@ options {
53
<%- if @min_refresh_time -%>
54
min-refresh-time <%= @min_refresh_time %>;
55
<%- end -%>
56
+<%- if @send_cookie == false -%>
57
+ send-cookie false;
58
+<%- end -%>
59
<%- if @max_retry_time -%>
60
max-retry-time <%= @max_retry_time %>;
61
0 commit comments