docs/dns: Add live record reference
CI / Check, build and cache nixfiles (push) Successful in 46m57s
Update docs / update (push) Failing after 1m6s

Generate forward and reverse record tables from authoritative AXFRs
while preserving handwritten Markdown outside per-zone markers. Run the
generator in CI and link the reference from the relevant docs.
This commit is contained in:
2026-08-02 01:07:27 +01:00
parent 8f9ca5e1c4
commit 88d0d19239
9 changed files with 714 additions and 16 deletions
+8
View File
@@ -19,4 +19,12 @@ in
update-docs-options = pkgs.writeShellScriptBin "update-docs-options" ''
exec ${pkgs.python3}/bin/python3 ${../ci/update-docs-options.py} "$@"
'';
update-docs-dns =
let
python = pkgs.python3.withPackages (ps: [ ps.dnspython ]);
in
pkgs.writeShellScriptBin "update-docs-dns" ''
exec ${python}/bin/python3 ${../ci/update-docs-dns.py} "$@"
'';
}