services: knot: Remove obsolete DISABLE-ANY? zone option.

It is now silently ignored by knotd.

* gnu/services/dns.scm (<knot-zone-configuration>):
Remove DISABLE-ANY? field.  Adjust all previous users.
* doc/guix.texi (DNS Services): Undocument it.
This commit is contained in:
Tobias Geerinckx-Rice 2021-10-03 23:09:38 +02:00
parent 8e71f48c0c
commit 8b5b7478ab
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79
2 changed files with 0 additions and 7 deletions

View file

@ -26799,9 +26799,6 @@ A list of acl identifiers.
@item @code{semantic-checks?} (default: @code{#f}) @item @code{semantic-checks?} (default: @code{#f})
When set, this adds more semantic checks to the zone. When set, this adds more semantic checks to the zone.
@item @code{disable-any?} (default: @code{#f})
When set, this forbids queries of the ANY type.
@item @code{zonefile-sync} (default: @code{0}) @item @code{zonefile-sync} (default: @code{0})
The delay between a modification in memory and on disk. 0 means immediate The delay between a modification in memory and on disk. 0 means immediate
synchronization. synchronization.

View file

@ -185,8 +185,6 @@ (define-record-type* <knot-zone-configuration>
(default '())) (default '()))
(semantic-checks? knot-zone-configuration-semantic-checks? (semantic-checks? knot-zone-configuration-semantic-checks?
(default #f)) (default #f))
(disable-any? knot-zone-configuration-disable-any?
(default #f))
(zonefile-sync knot-zone-configuration-zonefile-sync (zonefile-sync knot-zone-configuration-zonefile-sync
(default 0)) (default 0))
(zonefile-load knot-zone-configuration-zonefile-load (zonefile-load knot-zone-configuration-zonefile-load
@ -509,7 +507,6 @@ (define (knot-zone-config zone)
(notify (list #$@(knot-zone-configuration-notify zone))) (notify (list #$@(knot-zone-configuration-notify zone)))
(acl (list #$@(knot-zone-configuration-acl zone))) (acl (list #$@(knot-zone-configuration-acl zone)))
(semantic-checks? #$(knot-zone-configuration-semantic-checks? zone)) (semantic-checks? #$(knot-zone-configuration-semantic-checks? zone))
(disable-any? #$(knot-zone-configuration-disable-any? zone))
(zonefile-sync #$(knot-zone-configuration-zonefile-sync zone)) (zonefile-sync #$(knot-zone-configuration-zonefile-sync zone))
(zonefile-load '#$(knot-zone-configuration-zonefile-load zone)) (zonefile-load '#$(knot-zone-configuration-zonefile-load zone))
(journal-content #$(knot-zone-configuration-journal-content zone)) (journal-content #$(knot-zone-configuration-journal-content zone))
@ -541,7 +538,6 @@ (define (knot-zone-config zone)
#$(format-string-list #$(format-string-list
(knot-zone-configuration-acl zone)))) (knot-zone-configuration-acl zone))))
(format #t " semantic-checks: ~a\n" (if semantic-checks? "on" "off")) (format #t " semantic-checks: ~a\n" (if semantic-checks? "on" "off"))
(format #t " disable-any: ~a\n" (if disable-any? "on" "off"))
(if zonefile-sync (if zonefile-sync
(format #t " zonefile-sync: ~a\n" zonefile-sync)) (format #t " zonefile-sync: ~a\n" zonefile-sync))
(if zonefile-load (if zonefile-load