]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
spell-check: Make the spell-checker happy 12315/head
authorRemi Gacogne <remi.gacogne@powerdns.com>
Mon, 12 Dec 2022 09:11:43 +0000 (10:11 +0100)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Mon, 12 Dec 2022 09:11:43 +0000 (10:11 +0100)
docs/dnsupdate.rst
pdns/recursordist/docs/lua-scripting/hooks.rst

index b7beec8d6cd021634e9af830f0493874bb49b759..e8efc0c87d670829e8bf6e4042c0ff1f00a99487 100644 (file)
@@ -114,10 +114,10 @@ here. Here is an example using :program:`pdnsutil` to create a key named
 `test`::
 
     $ pdnsutil generate-tsig-key test hmac-sha512
-    Create new TSIG key test hmac-sha512 jMp41zXrTRKa9l9EGMj+9I9AL8exyIjXBdkFuNMJKv/UpNd83kFt+CrHQpuqBI8lf28xH1SrOFN1mr7QzOe7pQ==
+    Create new TSIG key test hmac-sha512 [base64-encoded key]
 
     $ pdnsutil list-tsig-keys | grep test
-    test. hmac-sha512. jMp41zXrTRKa9l9EGMj+9I9AL8exyIjXBdkFuNMJKv/UpNd83kFt+CrHQpuqBI8lf28xH1SrOFN1mr7QzOe7pQ==
+    test. hmac-sha512. [base64-encoded key]
 
 This adds the key with the name `test` to the zone's metadata. Note, the
 keys need to be added separately with `add-meta`, not as a comma or
@@ -137,7 +137,7 @@ command (see the manpage for :program:`nsupdate` for full details)::
     zone example.org
     update add test1.example.org 3600 A 1.2.3.4
     update add test1.example.org 3600 TXT "this is a test"
-    key hmac-sha512:test jMp41zXrTRKa9l9EGMj+9I9AL8exyIjXBdkFuNMJKv/UpNd83kFt+CrHQpuqBI8lf28xH1SrOFN1mr7QzOe7pQ==
+    key hmac-sha512:test [base64-encoded key]
     send
     !
 
index 789f63aa8bf010ae2bff31092d860b63078a50c9..576393ab2e8edcc7583c5d8f20f4b5e82ff641f9 100644 (file)
@@ -193,7 +193,7 @@ Interception Functions
   - :attr:`dq.qtype <DNSQuestion.qtype>`
   - :attr:`dq.isTcp <DNSQuestion.isTcp>`
 
-  Do not rely on other attributes having a value and do not call any method of the :class:`dq <DNSQuestion>` object apart from the recordset manipulation methods.
+  Do not rely on other attributes having a value and do not call any method of the :class:`dq <DNSQuestion>` object apart from the record set manipulation methods.
 
 .. function:: policyEventFilter(event) -> bool