diff options
author | 2021-07-30 23:58:26 +0100 | |
---|---|---|
committer | 2021-07-31 00:30:14 +0100 | |
commit | 15b7614fcd08b8f01a343fb10c9d95aea16c4d48 (patch) | |
tree | 7b4c3c4803ee96557694a5e585846cc270bd847a /sys-apps/unscd | |
parent | net-vpn/tailscale: [QA] call tmpfiles_process in pkg_postinst (diff) | |
download | gentoo-15b7614fcd08b8f01a343fb10c9d95aea16c4d48.tar.gz gentoo-15b7614fcd08b8f01a343fb10c9d95aea16c4d48.tar.bz2 gentoo-15b7614fcd08b8f01a343fb10c9d95aea16c4d48.zip |
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@gentoo.org>
Diffstat (limited to 'sys-apps/unscd')
-rw-r--r-- | sys-apps/unscd/unscd-0.54-r1.ebuild | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys-apps/unscd/unscd-0.54-r1.ebuild b/sys-apps/unscd/unscd-0.54-r1.ebuild index f8010311180b..0e9ee2aa391d 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 +} |