1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-23 09:10:43 +00:00

dns/powerdns-recursor: update to 4.9.0

ChangeLog: https://blog.powerdns.com/2023/06/30/powerdns-recursor-4-9-0-released

 * The performance impact of metrics collection has been reduced by using
   lock-free non-atomic thread-local counters.
 * The packet cache is sharded and shared by all threads.
 * The TTL of negative answers in the packet cache can now be controlled
   separately from positive and failure answers.
 * The rec_control trace_regex command writes the generated trace information to
   a specified file instead of the general log. The trace information contains
   more precise timestamps and DNSSEC validation information.
 * If extended-resolution-errors is enabled EDNS errors are now generated in
   more cases, specifically when authoritative servers for a zone are
   unreachable or when synthesising answers by e.g. using the aggressive NSEC
   cache.
 * The aggressive NSEC cache has been changed not to store NSEC3 entries which
   cover only a small fraction of possible names. This also allows switching off
   the aggressive cache for NSEC3 only.
 * It is now possible to switch off root-refreshing completely.
 * Proper handling of security policies that restrict the use of specific DNSSEC
   algorithms on RHEL9 derived systems.

PR:		272343
Reported by:	tremere@cainites.net (maintainer)
This commit is contained in:
Ralf van der Enden 2023-07-04 08:19:42 +02:00 committed by Fernando Apesteguía
parent dcb7d2bd59
commit bbf3f2110b
3 changed files with 18 additions and 19 deletions

View File

@ -1,6 +1,5 @@
PORTNAME= recursor
DISTVERSION= 4.8.4
PORTREVISION= 1
DISTVERSION= 4.9.0
CATEGORIES= dns
MASTER_SITES= http://downloads.powerdns.com/releases/
PKGNAMEPREFIX= powerdns-

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1680094921
SHA256 (pdns-recursor-4.8.4.tar.bz2) = f0a63fd08e03da82fa20d333ea5179d1b9259f4264546cf4995286677d9458c7
SIZE (pdns-recursor-4.8.4.tar.bz2) = 1528092
TIMESTAMP = 1688122340
SHA256 (pdns-recursor-4.9.0.tar.bz2) = d36f162843e367646a661a785ca0becde9b68552855bf40532aebafa103966f3
SIZE (pdns-recursor-4.9.0.tar.bz2) = 1551436

View File

@ -1,18 +1,18 @@
--- rec-main.cc.orig 2022-12-09 10:46:42 UTC
--- rec-main.cc.orig 2023-06-30 06:58:36 UTC
+++ rec-main.cc
@@ -2609,13 +2609,13 @@ int main(int argc, char** argv)
SYSTEMD_SETID_MSG
@@ -2829,13 +2829,13 @@ static void initArgs()
SYSTEMD_SETID_MSG
#endif
)
- = "";
+ = "pdns";
::arg().set("setuid", "If set, change user id to this uid for more security"
)
- = "";
+ = "pdns";
::arg().set("setuid", "If set, change user id to this uid for more security"
#ifdef HAVE_SYSTEMD
SYSTEMD_SETID_MSG
SYSTEMD_SETID_MSG
#endif
)
- = "";
+ = "pdns_recursor";
::arg().set("network-timeout", "Wait this number of milliseconds for network i/o") = "1500";
::arg().set("threads", "Launch this number of threads") = "2";
::arg().set("distributor-threads", "Launch this number of distributor threads, distributing queries to other threads") = "0";
)
- = "";
+ = "pdns_recursor";
::arg().set("network-timeout", "Wait this number of milliseconds for network i/o") = "1500";
::arg().set("threads", "Launch this number of threads") = "2";
::arg().set("distributor-threads", "Launch this number of distributor threads, distributing queries to other threads") = "0";