mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
net-dns/djbdns: new revision increasing tinydns's softlimit.
The tinydns launch script imposes a "softlimit" on the amount of memory it can use, and sometime recently (in djbdns terms, anyway), the old default of 300000 became insufficient. We raise it 4500000. This will only help new installations; users with existing ones will need to modify their local launch scripts because the script itself is not controlled by the package manager. Thanks to Vadim Efimov for pointing out that this problem is widespread and in need of fixing. Closes: https://bugs.gentoo.org/883159 Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
This commit is contained in:
@@ -44,6 +44,7 @@ PATCHES=(
|
||||
"${FILESDIR}/CVE2009-0858_0001-check-response-domain-name-length.patch"
|
||||
"${FILESDIR}/CVE2012-1191_0001-ghost-domain-attack.patch"
|
||||
"${FILESDIR}/AR-and-RANLIB-support.patch"
|
||||
"${FILESDIR}/tinydns-softlimit.patch"
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
18
net-dns/djbdns/files/tinydns-softlimit.patch
Normal file
18
net-dns/djbdns/files/tinydns-softlimit.patch
Normal file
@@ -0,0 +1,18 @@
|
||||
Use a larger memory limit by default than was chosen at the beginning
|
||||
of time. This is evidently necessary on many machines, including my
|
||||
own, starting somewhere around December 2020.
|
||||
|
||||
https://bugs.gentoo.org/883159
|
||||
|
||||
diff -Naur a/tinydns-conf.c b/tinydns-conf.c
|
||||
--- a/tinydns-conf.c 2001-02-11 21:11:45.000000000 +0000
|
||||
+++ b/tinydns-conf.c 2021-11-08 17:23:06.181385437 +0000
|
||||
@@ -46,7 +46,7 @@
|
||||
|
||||
start("run");
|
||||
outs("#!/bin/sh\nexec 2>&1\nexec envuidgid "); outs(user);
|
||||
- outs(" envdir ./env softlimit -d300000 ");
|
||||
+ outs(" envdir ./env softlimit -d4500000 ");
|
||||
outs(auto_home); outs("/bin/tinydns\n");
|
||||
finish();
|
||||
perm(0755);
|
||||
Reference in New Issue
Block a user