From 176e0916fef310ccaf51e8b264a419df0ef4d446 Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Sun, 10 Sep 2017 21:01:49 +0100 Subject: [PATCH] mw/chaos: update docs (#1055) * mw/chaos: update docs Fix/update the documentation: make the corefile snippets tested and expand them a little. Show `dig` example. Fixes #1050 * dot --- middleware/chaos/README.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/middleware/chaos/README.md b/middleware/chaos/README.md index d3c571e1f..264ab0601 100644 --- a/middleware/chaos/README.md +++ b/middleware/chaos/README.md @@ -19,6 +19,28 @@ following zones: `version.bind`, `version.server`, `authors.bind`, `hostname.bin ## Examples +Specify all the zones in full. + +~~~ corefile +version.bind version.server authors.bind hostname.bind id.server { + chaos CoreDNS-001 info@coredns.io +} ~~~ -chaos CoreDNS-001 "Miek Gieben" miek@miek.nl + +Or just default to `.`: + +~~~ corefile +. { + chaos CoreDNS-001 info@coredns.io +} +~~~ + +And test with `dig`: + +~~~ txt +% dig @localhost CH TXT version.bind +... +;; ANSWER SECTION: +version.bind. 0 CH TXT "CoreDNS-001" +... ~~~