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-misc/openvswitch/
Date: Fri, 30 Jul 2021 23:31:16
Message-Id: 1627687810.80385f7be49672ccb60c0c19f38f10f55518e214.sam@gentoo
1 commit: 80385f7be49672ccb60c0c19f38f10f55518e214
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 30 22:57:38 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 30 23:30:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80385f7b
7
8 net-misc/openvswitch: [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-misc/openvswitch/openvswitch-2.14.1.ebuild | 2 ++
17 net-misc/openvswitch/openvswitch-2.15.0.ebuild | 2 ++
18 2 files changed, 4 insertions(+)
19
20 diff --git a/net-misc/openvswitch/openvswitch-2.14.1.ebuild b/net-misc/openvswitch/openvswitch-2.14.1.ebuild
21 index cb44e1d8be7..c873cc5a547 100644
22 --- a/net-misc/openvswitch/openvswitch-2.14.1.ebuild
23 +++ b/net-misc/openvswitch/openvswitch-2.14.1.ebuild
24 @@ -123,6 +123,8 @@ src_install() {
25 pkg_postinst() {
26 use modules && linux-mod_pkg_postinst
27
28 + tmpfiles_process openvswitch.conf
29 +
30 # only needed on non-systemd, but helps anyway
31 elog "Use the following command to create an initial database for ovsdb-server:"
32 elog " emerge --config =${CATEGORY}/${PF}"
33
34 diff --git a/net-misc/openvswitch/openvswitch-2.15.0.ebuild b/net-misc/openvswitch/openvswitch-2.15.0.ebuild
35 index 7f44d4ded56..83ea5328d7d 100644
36 --- a/net-misc/openvswitch/openvswitch-2.15.0.ebuild
37 +++ b/net-misc/openvswitch/openvswitch-2.15.0.ebuild
38 @@ -122,6 +122,8 @@ src_install() {
39 pkg_postinst() {
40 use modules && linux-mod_pkg_postinst
41
42 + tmpfiles_process openvswitch.conf
43 +
44 # only needed on non-systemd, but helps anyway
45 elog "Use the following command to create an initial database for ovsdb-server:"
46 elog " emerge --config =${CATEGORY}/${PF}"