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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EC322158090 for ; Sun, 29 May 2022 23:06:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8524E0936; Sun, 29 May 2022 23:06:49 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A869CE092D for ; Sun, 29 May 2022 23:06:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9DFD43412CC for ; Sun, 29 May 2022 23:06:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D7DAC4D5 for ; Sun, 29 May 2022 23:06:46 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1653865086.2cdd140a843387d6fd3b744d780613660357f52d.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/heat/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-cluster/heat/heat-18.0.0-r1.ebuild sys-cluster/heat/heat-18.0.0.ebuild X-VCS-Directories: sys-cluster/heat/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 2cdd140a843387d6fd3b744d780613660357f52d X-VCS-Branch: dev Date: Sun, 29 May 2022 23:06:46 +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: e58d0f47-ea3f-402b-a444-3fc305a6b0a5 X-Archives-Hash: 4501d5eda2d53dddb01e0f00c228c594 commit: 2cdd140a843387d6fd3b744d780613660357f52d Author: Alessandro Barbieri gmail com> AuthorDate: Sun May 29 22:56:06 2022 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Sun May 29 22:58:06 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2cdd140a sys-cluster/heat: use root perms for logrotate Signed-off-by: Alessandro Barbieri gmail.com> sys-cluster/heat/{heat-18.0.0.ebuild => heat-18.0.0-r1.ebuild} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-cluster/heat/heat-18.0.0.ebuild b/sys-cluster/heat/heat-18.0.0-r1.ebuild similarity index 100% rename from sys-cluster/heat/heat-18.0.0.ebuild rename to sys-cluster/heat/heat-18.0.0-r1.ebuild index 45120c6ff..79911f0e0 100644 --- a/sys-cluster/heat/heat-18.0.0.ebuild +++ b/sys-cluster/heat/heat-18.0.0-r1.ebuild @@ -134,6 +134,9 @@ python_install_all() { newinitd "${FILESDIR}/heat.initd" "heat-${svc}" done + insinto /etc/logrotate.d + doins "${FILESDIR}/heat.logrotate" + insinto /etc/heat insopts -m 0640 -o heat -g heat doins etc/heat/heat.conf.sample @@ -151,8 +154,5 @@ python_install_all() { systemd_dounit "${FILESDIR}/heat-engine.service" systemd_dounit "${FILESDIR}/heat-api.service" - insinto /etc/logrotate.d - doins "${FILESDIR}/heat.logrotate" - rm -r "${ED}/usr/etc" }