Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/getdns/
Date: Fri, 30 Jul 2021 23:31:16
Message-Id: 1627687801.9cba983df68e021c324cd22b20e7b49ed5a147cf.sam@gentoo
1 commit: 9cba983df68e021c324cd22b20e7b49ed5a147cf
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 30 23:13:58 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 30 23:30:01 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cba983d
7
8 net-dns/getdns: [QA] call tmpfiles_process in pkg_postinst
9
10 This is needed to actually apply the tmpfiles configuration
11 we've installed in the ebuild. See tmpfiles.eclass documentation.
12
13 Package-Manager: Portage-3.0.20, Repoman-3.0.3
14 Signed-off-by: Sam James <sam <AT> gentoo.org>
15
16 net-dns/getdns/getdns-1.7.0.ebuild | 1 +
17 1 file changed, 1 insertion(+)
18
19 diff --git a/net-dns/getdns/getdns-1.7.0.ebuild b/net-dns/getdns/getdns-1.7.0.ebuild
20 index 0be2dffb7be..ebf797b77be 100644
21 --- a/net-dns/getdns/getdns-1.7.0.ebuild
22 +++ b/net-dns/getdns/getdns-1.7.0.ebuild
23 @@ -90,5 +90,6 @@ src_install() {
24 pkg_postinst() {
25 if use stubby; then
26 fcaps cap_net_bind_service=ei /usr/bin/stubby
27 + tmpfiles_process stubby.conf
28 fi
29 }