From f28017017f4a976bd541d92da7eef38ad1193fad Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Wed, 13 Sep 2023 08:07:30 +0200 Subject: [PATCH] Fix wrongly converted default for "quiet" --- pdns/recursordist/settings/table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/recursordist/settings/table.py b/pdns/recursordist/settings/table.py index 56ea6c9ef1..e57ea13940 100644 --- a/pdns/recursordist/settings/table.py +++ b/pdns/recursordist/settings/table.py @@ -1975,7 +1975,7 @@ In the default configuration this means that IPv6 is not used for outgoing queri 'name' : 'quiet', 'section' : 'logging', 'type' : LType.Bool, - 'default' : 'yes', + 'default' : 'true', 'help' : 'Suppress logging of questions and answers', 'doc' : ''' Don't log queries. -- 2.47.2