From: Peter van Dijk Date: Thu, 2 May 2024 14:54:21 +0000 (+0200) Subject: default to no for 4.9.x X-Git-Tag: auth-4.9.1~17^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3aee1430e6575aeebbf390403d57c3550518e966;p=thirdparty%2Fpdns.git default to no for 4.9.x --- diff --git a/pdns/auth-main.cc b/pdns/auth-main.cc index e2c6f77bd2..80db76f122 100644 --- a/pdns/auth-main.cc +++ b/pdns/auth-main.cc @@ -307,7 +307,7 @@ static void declareArguments() ::arg().setSwitch("8bit-dns", "Allow 8bit dns queries") = "no"; #ifdef HAVE_LUA_RECORDS ::arg().setSwitch("enable-lua-records", "Process LUA records for all zones (metadata overrides this)") = "no"; - ::arg().setSwitch("lua-records-insert-whitespace", "Insert whitespace when combining LUA chunks") = "no"; + ::arg().setSwitch("lua-records-insert-whitespace", "Insert whitespace when combining LUA chunks") = "yes"; ::arg().set("lua-records-exec-limit", "LUA records scripts execution limit (instructions count). Values <= 0 mean no limit") = "1000"; ::arg().set("lua-health-checks-expire-delay", "Stops doing health checks after the record hasn't been used for that delay (in seconds)") = "3600"; ::arg().set("lua-health-checks-interval", "LUA records health checks monitoring interval in seconds") = "5";