xref: /netbsd-src/external/mpl/bind/dist/doc/man/conf.py (revision cef8759bd76c1b621f8eab8faa6f208faabc2e15)
1############################################################################
2# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
3#
4# This Source Code Form is subject to the terms of the Mozilla Public
5# License, v. 2.0. If a copy of the MPL was not distributed with this
6# file, You can obtain one at http://mozilla.org/MPL/2.0/.
7#
8# See the COPYRIGHT file distributed with this work for additional
9# information regarding copyright ownership.
10############################################################################
11
12# flake8: noqa: E501
13
14#
15# Configuration file for the Sphinx documentation builder.
16#
17# This file only contains a selection of the most common options. For a full
18# list see the documentation:
19# http://www.sphinx-doc.org/en/master/config
20
21# -- Path setup --------------------------------------------------------------
22
23# If extensions (or modules to document with autodoc) are in another directory,
24# add these directories to sys.path here. If the directory is relative to the
25# documentation root, use os.path.abspath to make it absolute, like shown here.
26#
27# import os
28# import sys
29# sys.path.insert(0, os.path.abspath('.'))
30
31# -- Project information -----------------------------------------------------
32
33project = u'BIND 9'
34# pylint: disable=redefined-builtin
35copyright = u'2020, Internet Systems Consortium'
36author = u'Internet Systems Consortium'
37
38# -- General configuration ---------------------------------------------------
39
40# Add any Sphinx extension module names here, as strings. They can be
41# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
42# ones.
43extensions = []
44
45# Add any paths that contain templates here, relative to this directory.
46templates_path = ['../arm/_templates']
47
48# List of patterns, relative to source directory, that match files and
49# directories to ignore when looking for source files.
50# This pattern also affects html_static_path and html_extra_path.
51exclude_patterns = [
52    '_build',
53    'Thumbs.db',
54    '.DS_Store',
55    ]
56
57# The master toctree document.
58master_doc = 'index'
59
60# pylint: disable=line-too-long
61man_pages = [
62    ('arpaname', 'arpaname', 'translate IP addresses to the corresponding ARPA names', author, 1),
63    ('ddns-confgen', 'ddns-confgen', 'ddns key generation tool', author, 8),
64    ('delv', 'delv', 'DNS lookup and validation utility', author, 1),
65    ('dig', 'dig', 'DNS lookup utility', author, 1),
66    ('dnssec-cds', 'dnssec-cds', 'change DS records for a child zone based on CDS/CDNSKEY', author, 8),
67    ('dnssec-checkds', 'dnssec-checkds', 'DNSSEC delegation consistency checking tool', author, 8),
68    ('dnssec-coverage', 'dnssec-coverage', 'checks future DNSKEY coverage for a zone', author, 8),
69    ('dnssec-dsfromkey', 'dnssec-dsfromkey', 'DNSSEC DS RR generation tool', author, 8),
70    ('dnssec-importkey', 'dnssec-importkey', 'import DNSKEY records from external systems so they can be managed', author, 8),
71    ('dnssec-keyfromlabel', 'dnssec-keyfromlabel', 'DNSSEC key generation tool', author, 8),
72    ('dnssec-keygen', 'dnssec-keygen', 'DNSSEC key generation tool', author, 8),
73    ('dnssec-keymgr', 'dnssec-keymgr', 'ensure correct DNSKEY coverage based on a defined policy', author, 8),
74    ('dnssec-revoke', 'dnssec-revoke', 'set the REVOKED bit on a DNSSEC key', author, 8),
75    ('dnssec-settime', 'dnssec-settime', 'set the key timing metadata for a DNSSEC key', author, 8),
76    ('dnssec-signzone', 'dnssec-signzone', 'DNSSEC zone signing tool', author, 8),
77    ('dnssec-verify', 'dnssec-verify', 'DNSSEC zone verification tool', author, 8),
78    ('dnstap-read', 'dnstap-read', 'print dnstap data in human-readable form', author, 1),
79    ('filter-aaaa', 'filter-aaaa', 'filter AAAA in DNS responses when A is present', author, 8),
80    ('host', 'host', 'DNS lookup utility', author, 1),
81    ('mdig', 'mdig', 'DNS pipelined lookup utility', author, 1),
82    ('named-checkconf', 'named-checkconf', 'named configuration file syntax checking tool', author, 8),
83    ('named-checkzone', 'named-checkzone', 'zone file validity checking or converting tool', author, 8),
84    ('named-journalprint', 'named-journalprint', 'print zone journal in human-readable form', author, 8),
85    ('named-nzd2nzf', 'named-nzd2nzf', 'convert an NZD database to NZF text format', author, 8),
86    ('named-rrchecker', 'named-rrchecker', 'syntax checker for individual DNS resource records', author, 1),
87    ('named.conf', 'named.conf', 'configuration file for **named**', author, 5),
88    ('named', 'named', 'Internet domain name server', author, 8),
89    ('nsec3hash', 'nsec3hash', 'generate NSEC3 hash', author, 8),
90    ('nslookup', 'nslookup', 'query Internet name servers interactively', author, 1),
91    ('nsupdate', 'nsupdate', 'dynamic DNS update utility', author, 1),
92    ('pkcs11-destroy', 'pkcs11-destroy', 'destroy PKCS#11 objects', author, 8),
93    ('pkcs11-keygen', 'pkcs11-keygen', 'generate keys on a PKCS#11 device', author, 8),
94    ('pkcs11-list', 'pkcs11-list', 'list PKCS#11 objects', author, 8),
95    ('pkcs11-tokens', 'pkcs11-tokens', 'list PKCS#11 available tokens', author, 8),
96    ('rndc-confgen', 'rndc-confgen', 'rndc key generation tool', author, 8),
97    ('rndc.conf', 'rndc.conf', 'rndc configuration file', author, 5),
98    ('rndc', 'rndc', 'name server control utility', author, 8),
99    ]
100