From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D8226158015 for ; Sun, 26 Sep 2021 19:36:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2995BE09CB; Sun, 26 Sep 2021 19:36:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 043E2E09CA for ; Sun, 26 Sep 2021 19:36:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A04FA342BC7 for ; Sun, 26 Sep 2021 19:36:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C8B81116 for ; Sun, 26 Sep 2021 19:36:27 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1632684970.e470cc11949eb87469e0265f646ea20f884edab8.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/x2goserver/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/x2goserver/x2goserver-4.1.0.3-r1.ebuild X-VCS-Directories: net-misc/x2goserver/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: e470cc11949eb87469e0265f646ea20f884edab8 X-VCS-Branch: master Date: Sun, 26 Sep 2021 19:36:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 97398cae-bcf6-4c26-8271-73a822b947ca X-Archives-Hash: 7a8c911685e630576aea6900eb6095ed commit: e470cc11949eb87469e0265f646ea20f884edab8 Author: Conrad Kostecki gentoo org> AuthorDate: Sun Sep 26 19:33:04 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sun Sep 26 19:36:10 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e470cc11 net-misc/x2goserver: fix tmpfiles Closes: https://bugs.gentoo.org/809332 Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Conrad Kostecki gentoo.org> net-misc/x2goserver/x2goserver-4.1.0.3-r1.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/net-misc/x2goserver/x2goserver-4.1.0.3-r1.ebuild b/net-misc/x2goserver/x2goserver-4.1.0.3-r1.ebuild index c702e328a82..78bc8c8e9fb 100644 --- a/net-misc/x2goserver/x2goserver-4.1.0.3-r1.ebuild +++ b/net-misc/x2goserver/x2goserver-4.1.0.3-r1.ebuild @@ -2,7 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit systemd toolchain-funcs xdg + +inherit systemd tmpfiles toolchain-funcs xdg DESCRIPTION="The X2Go server" HOMEPAGE="http://www.x2go.org" @@ -78,7 +79,9 @@ src_install() { } pkg_postinst() { + tmpfiles_process x2goserver.conf xdg_pkg_postinst + if use sqlite ; then if [[ -f "${EROOT}"/var/lib/x2go/x2go_sessions ]] ; then elog "To use sqlite and update your existing database, run:" @@ -89,6 +92,7 @@ pkg_postinst() { fi fi + if use postgres ; then elog "To use a PostgreSQL database, more information is availabe here:" elog "http://www.x2go.org/doku.php/wiki:advanced:multi-node:x2goserver-pgsql"