Skip to content

Commit a5e00f5

Browse files
committed
adds ixfr-from-differences
1 parent ef3b6c9 commit a5e00f5

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

manifests/init.pp

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
$serial_query_rate = undef,
2828
$server_id = false,
2929
$max_ncache_ttl = undef,
30+
$ixfr_from_differences = undef,
3031
# NOTE: we need to be able to override this parameter when declaring class,
3132
# especially when not using hiera (i.e. when using Foreman as ENC):
3233
$default_zones_include = $::bind::defaults::default_zones_include,

templates/named.conf.erb

+3
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ options {
3232
<%- if @request_ixfr -%>
3333
request-ixfr <%= @request_ixfr %>;
3434
<%- end -%>
35+
<%- if @ixfr_from_differences -%>
36+
ixfr-from-differences <%= @ixfr_from_differences %>;
37+
<%- end -%>
3538
<%- if @serial_query_rate -%>
3639
serial-query-rate <%= @serial_query_rate %>;
3740
<%- end -%>

0 commit comments

Comments
 (0)