diff --git a/bin/named/named.conf.docbook b/bin/named/named.conf.docbook index 1224e4e2ee..f8f223eb3c 100644 --- a/bin/named/named.conf.docbook +++ b/bin/named/named.conf.docbook @@ -13,7 +13,7 @@ - 2019-05-10 + 2019-06-28 ISC @@ -158,9 +158,10 @@ logging { MANAGED-KEYS Deprecated - see DNSSEC-KEYS. -managed-keys { string ( static-key | - initial-key ) integer integer integer - quoted_string; ... }; +managed-keys { string ( static-key + | initial-key ) integer + integer integer + quoted_string; ... }; deprecated @@ -220,7 +221,6 @@ options { check-spf ( warn | ignore ); check-srv-cname ( fail | warn | ignore ); check-wildcard boolean; - cleaning-interval integer; clients-per-query integer; cookie-algorithm ( aes | sha1 | sha256 ); cookie-secret string; @@ -253,8 +253,9 @@ options { dnssec-accept-expired boolean; dnssec-dnskey-kskonly boolean; dnssec-loadkeys-interval integer; - dnssec-lookaside ( string trust-anchor - string | auto | no );, deprecated + dnssec-lookaside ( string + trust-anchor string | + auto | no ); deprecated dnssec-must-be-secure string boolean; dnssec-secure-to-insecure boolean; dnssec-update-mode ( maintain | no-resign ); @@ -534,7 +535,7 @@ statistics-channels { trusted-keys { string integer integer integer - quoted_string; ... };, deprecated + quoted_string; ... }; deprecated @@ -579,7 +580,6 @@ view string [ class ] { check-spf ( warn | ignore ); check-srv-cname ( fail | warn | ignore ); check-wildcard boolean; - cleaning-interval integer; clients-per-query integer; deny-answer-addresses { address_match_element; ... } [ except-from { string; ... } ]; @@ -614,8 +614,9 @@ view string [ class ] { initial-key ) integer integer integer quoted_string; ... }; dnssec-loadkeys-interval integer; - dnssec-lookaside ( string trust-anchor - string | auto | no );, deprecated + dnssec-lookaside ( string + trust-anchor string | + auto | no ); deprecated dnssec-must-be-secure string boolean; dnssec-secure-to-insecure boolean; dnssec-update-mode ( maintain | no-resign ); @@ -650,9 +651,11 @@ view string [ class ] { key-directory quoted_string; lame-ttl ttlval; lmdb-mapsize sizeval; - managed-keys { string ( static-key | - initial-key ) integer integer - integer quoted_string; ... };, deprecated + managed-keys { string ( + static-key | initial-key + ) integer integer + integer + quoted_string; ... }; deprecated masterfile-format ( map | raw | text ); masterfile-style ( full | relative ); match-clients { address_match_element; ... }; @@ -805,7 +808,7 @@ view string [ class ] { trusted-keys { string integer integer integer - quoted_string; ... };, deprecated + quoted_string; ... }; deprecated try-tcp-refresh boolean; update-check-ksk boolean; use-alt-transfer-source boolean; diff --git a/doc/arm/managed-keys.grammar.xml b/doc/arm/managed-keys.grammar.xml index d1aaee3c37..beb0f96725 100644 --- a/doc/arm/managed-keys.grammar.xml +++ b/doc/arm/managed-keys.grammar.xml @@ -12,7 +12,8 @@ -managed-keys { string ( static-key | - initial-key ) integer integer integer - quoted_string; ... }; +managed-keys { string ( static-key + | initial-key ) integer + integer integer + quoted_string; ... }; deprecated diff --git a/doc/arm/options.grammar.xml b/doc/arm/options.grammar.xml index 6f515c8400..ed399c07dd 100644 --- a/doc/arm/options.grammar.xml +++ b/doc/arm/options.grammar.xml @@ -57,7 +57,6 @@ check-spf ( warn | ignore ); check-srv-cname ( fail | warn | ignore ); check-wildcard boolean; - cleaning-interval integer; clients-per-query integer; cookie-algorithm ( aes | sha1 | sha256 ); cookie-secret string; @@ -90,8 +89,9 @@ dnssec-accept-expired boolean; dnssec-dnskey-kskonly boolean; dnssec-loadkeys-interval integer; - dnssec-lookaside ( string trust-anchor - string | auto | no );, deprecated + dnssec-lookaside ( string + trust-anchor string | + auto | no ); deprecated dnssec-must-be-secure string boolean; dnssec-secure-to-insecure boolean; dnssec-update-mode ( maintain | no-resign ); diff --git a/doc/arm/trusted-keys.grammar.xml b/doc/arm/trusted-keys.grammar.xml index 2a0b6e9454..82a502dff0 100644 --- a/doc/arm/trusted-keys.grammar.xml +++ b/doc/arm/trusted-keys.grammar.xml @@ -14,5 +14,5 @@ trusted-keys { string integer integer integer - quoted_string; ... };, deprecated + quoted_string; ... }; deprecated diff --git a/doc/misc/docbook-grammars.pl b/doc/misc/docbook-grammars.pl index 7d36da8fe3..98236beec9 100644 --- a/doc/misc/docbook-grammars.pl +++ b/doc/misc/docbook-grammars.pl @@ -67,7 +67,7 @@ while () { s{ // not configured}{}; s{ // non-operational}{}; - s{ // may occur multiple times}{}; + s{ // may occur multiple times,*}{}; s{<([a-z0-9_-]+)>}{$1}g; s{^(\s*)([a-z0-9_-]+)\b}{$1$2}; s{[[]}{[}g; diff --git a/doc/misc/docbook-options.pl b/doc/misc/docbook-options.pl index e67213136d..92f3c78bd4 100644 --- a/doc/misc/docbook-options.pl +++ b/doc/misc/docbook-options.pl @@ -128,7 +128,7 @@ while () { s{ // not configured}{}; s{ // non-operational}{}; - s{ (// )*may occur multiple times}{}; + s{ (// )*may occur multiple times,*}{}; s{<([a-z0-9_-]+)>}{$1}g; s{ // deprecated,*}{// deprecated}; s{[[]}{[}g; diff --git a/doc/misc/docbook-zoneopt.pl b/doc/misc/docbook-zoneopt.pl index 2adf2b10f9..0a1354bba2 100644 --- a/doc/misc/docbook-zoneopt.pl +++ b/doc/misc/docbook-zoneopt.pl @@ -51,7 +51,7 @@ while () { } s{ // not configured}{}; - s{ // may occur multiple times}{}; + s{ // may occur multiple times,*}{}; s{<([a-z0-9_-]+)>}{$1}g; s{^(\s*)([a-z0-9_-]+)\b}{$1$2}; s{[[]}{[}g; diff --git a/doc/misc/options b/doc/misc/options index 1c61197840..d697fe543e 100644 --- a/doc/misc/options +++ b/doc/misc/options @@ -146,8 +146,9 @@ options { dnssec-dnskey-kskonly ; dnssec-enable ; // obsolete dnssec-loadkeys-interval ; - dnssec-lookaside ( trust-anchor - | auto | no ); // may occur multiple times, deprecated + dnssec-lookaside ( + trust-anchor | + auto | no ); // may occur multiple times, deprecated dnssec-must-be-secure ; // may occur multiple times dnssec-secure-to-insecure ; dnssec-update-mode ( maintain | no-resign ); @@ -192,7 +193,7 @@ options { fstrm-set-output-queue-model ( mpsc | spsc ); // not configured fstrm-set-output-queue-size ; // not configured fstrm-set-reopen-interval ; // not configured - geoip-directory ( | none ); // not configured + geoip-directory ( | none ); geoip-use-ecs ; // obsolete glue-cache ; has-old-clients ; // ancient @@ -213,7 +214,7 @@ options { listen-on-v6 [ port ] [ dscp ] { ; ... }; // may occur multiple times - lmdb-mapsize ; // non-operational + lmdb-mapsize ; lock-file ( | none ); maintain-ixfr-base ; // ancient managed-keys-directory ; @@ -524,8 +525,9 @@ view [ ] { initial-key ) ; ... }; // may occur multiple times dnssec-loadkeys-interval ; - dnssec-lookaside ( trust-anchor - | auto | no ); // may occur multiple times, deprecated + dnssec-lookaside ( + trust-anchor | + auto | no ); // may occur multiple times, deprecated dnssec-must-be-secure ; // may occur multiple times dnssec-secure-to-insecure ; dnssec-update-mode ( maintain | no-resign ); @@ -563,7 +565,7 @@ view [ ] { }; // may occur multiple times key-directory ; lame-ttl ; - lmdb-mapsize ; // non-operational + lmdb-mapsize ; maintain-ixfr-base ; // ancient managed-keys { ( static-key | initial-key