commit: 15b7614fcd08b8f01a343fb10c9d95aea16c4d48
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 30 22:58:26 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 30 23:30:14 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15b7614f
sys-apps/unscd: [QA] call tmpfiles_process in pkg_postinst
This is needed to actually apply the tmpfiles configuration
we've installed in the ebuild. See tmpfiles.eclass documentation.
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/unscd/unscd-0.54-r1.ebuild | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/sys-apps/unscd/unscd-0.54-r1.ebuild
b/sys-apps/unscd/unscd-0.54-r1.ebuild
index f8010311180..0e9ee2aa391 100644
--- a/sys-apps/unscd/unscd-0.54-r1.ebuild
+++ b/sys-apps/unscd/unscd-0.54-r1.ebuild
@@ -34,3 +34,7 @@ src_install() {
systemd_dounit "${FILESDIR}"/unscd.service
dosbin unscd
}
+
+pkg_postinst() {
+ tmpfiles_process unscd.conf
+}