mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 05:57:52 +00:00
Merge branch '3185-follow-up-fix-zone-documentation' into 'main'
Fix zone named.conf man page documentation Closes #3185 See merge request isc-projects/bind9!5977
This commit is contained in:
commit
fd8dd9841d
@ -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
|
||||
|
@ -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
|
||||
|
@ -79,6 +79,8 @@ while (<FH>) {
|
||||
}
|
||||
}
|
||||
|
||||
my $UNDERLINE;
|
||||
|
||||
my $blank = 0;
|
||||
while (<FH>) {
|
||||
if (m{// not.*implemented} || m{// obsolete} ||
|
||||
@ -97,7 +99,7 @@ while (<FH>) {
|
||||
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 (<FH>) {
|
||||
|
||||
}
|
||||
|
||||
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 <<END;
|
||||
.. include:: ../../doc/misc/primary.zoneopt.rst
|
||||
.. include:: ../../doc/misc/secondary.zoneopt.rst
|
||||
|
Loading…
x
Reference in New Issue
Block a user