Merge branch 'filter-aaaa-on-v4-option' into 6.0-prerelease
This commit is contained in:
commit
4d2d2f63a8
@ -3,6 +3,7 @@
|
|||||||
class bind (
|
class bind (
|
||||||
$forwarders = '',
|
$forwarders = '',
|
||||||
$dnssec = true,
|
$dnssec = true,
|
||||||
|
$filter_ipv6 = false,
|
||||||
$version = '',
|
$version = '',
|
||||||
$rndc = undef,
|
$rndc = undef,
|
||||||
$statistics_port = undef,
|
$statistics_port = undef,
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "inkblot/bind",
|
"name": "inkblot/bind",
|
||||||
"version": "5.1.1",
|
"version": "5.1.2",
|
||||||
"author": "inkblot",
|
"author": "inkblot",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"summary": "ISC BIND name server",
|
"summary": "ISC BIND name server",
|
||||||
|
|||||||
@ -24,6 +24,9 @@ options {
|
|||||||
auth-nxdomain <%= @auth_nxdomain ? 'yes' : 'no' %>;
|
auth-nxdomain <%= @auth_nxdomain ? 'yes' : 'no' %>;
|
||||||
listen-on-v6 { any; };
|
listen-on-v6 { any; };
|
||||||
dnssec-enable <%= @dnssec ? 'yes' : 'no' %>;
|
dnssec-enable <%= @dnssec ? 'yes' : 'no' %>;
|
||||||
|
<%- if @filter_ipv6 -%>
|
||||||
|
filter-aaaa-on-v4 yes;
|
||||||
|
<%- end -%>
|
||||||
<%- if @dnssec -%>
|
<%- if @dnssec -%>
|
||||||
dnssec-validation yes;
|
dnssec-validation yes;
|
||||||
dnssec-lookaside auto;
|
dnssec-lookaside auto;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user