diff --git a/bin/named/named.conf.rst b/bin/named/named.conf.rst index 6fc7d8175c..9b61c12f3f 100644 --- a/bin/named/named.conf.rst +++ b/bin/named/named.conf.rst @@ -885,6 +885,11 @@ VIEW zone-statistics ( full | terse | none | boolean ); }; +ZONE +^^^^ + +Any of these zone statements can also be set inside the view statement. + .. include:: ../../doc/misc/primary.zoneopt.rst .. include:: ../../doc/misc/secondary.zoneopt.rst .. include:: ../../doc/misc/mirror.zoneopt.rst diff --git a/doc/man/named.conf.5in b/doc/man/named.conf.5in index ec2c6b47f6..08ed18584e 100644 --- a/doc/man/named.conf.5in +++ b/doc/man/named.conf.5in @@ -974,6 +974,9 @@ view string [ class ] { .fi .UNINDENT .UNINDENT +.SS ZONE +.sp +Any of these zone statements can also be set inside the view statement. .INDENT 0.0 .INDENT 3.5 .sp diff --git a/doc/misc/rst-options.pl b/doc/misc/rst-options.pl index 79a934dbcc..eeb023a1c1 100644 --- a/doc/misc/rst-options.pl +++ b/doc/misc/rst-options.pl @@ -79,6 +79,8 @@ while () { } } +my $UNDERLINE; + my $blank = 0; while () { if (m{// not.*implemented} || m{// obsolete} || @@ -97,7 +99,7 @@ while () { s{ }{\t}g; if (m{^([a-z0-9-]+) }) { my $HEADING = uc $1; - my $UNDERLINE = $HEADING; + $UNDERLINE = $HEADING; $UNDERLINE =~ s/./^/g; print $HEADING . "\n"; print $UNDERLINE . "\n\n"; @@ -123,6 +125,12 @@ while () { } +print "ZONE\n"; +$UNDERLINE = "ZONE"; +$UNDERLINE =~ s/./^/g; +print $UNDERLINE . "\n\n"; +print "Any of these zone statements can also be set inside the view statement.\n\n"; + print <