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 AD0A41382C5 for ; Tue, 23 Mar 2021 14:45:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0CE9BE0884; Tue, 23 Mar 2021 14:45:14 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E696BE0884 for ; Tue, 23 Mar 2021 14:45:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EE400335D93 for ; Tue, 23 Mar 2021 14:45:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4BBA2631 for ; Tue, 23 Mar 2021 14:45:10 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1616458083.d27729f7c428e3c7e2486eced460e225e9b0b4c7.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-cluster/pcs/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-cluster/pcs/pcs-0.10.8-r1.ebuild X-VCS-Directories: sys-cluster/pcs/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: d27729f7c428e3c7e2486eced460e225e9b0b4c7 X-VCS-Branch: master Date: Tue, 23 Mar 2021 14:45:10 +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: 09b2c219-142b-4b0a-9f8b-a45e47c21734 X-Archives-Hash: 94c413fe28e928437ee3e01017898306 commit: d27729f7c428e3c7e2486eced460e225e9b0b4c7 Author: Alessandro Barbieri gmail com> AuthorDate: Tue Mar 23 00:08:03 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Tue Mar 23 00:08:03 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d27729f7 sys-cluster/pcs: fix || die Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Alessandro Barbieri gmail.com> sys-cluster/pcs/pcs-0.10.8-r1.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys-cluster/pcs/pcs-0.10.8-r1.ebuild b/sys-cluster/pcs/pcs-0.10.8-r1.ebuild index a83f97737..e41199e88 100644 --- a/sys-cluster/pcs/pcs-0.10.8-r1.ebuild +++ b/sys-cluster/pcs/pcs-0.10.8-r1.ebuild @@ -92,12 +92,12 @@ src_install() { systemd_newunit "${S}/pcsd/pcsd-ruby.service" "pcsd-daemon.service" fi # custom service file for openRC - newinitd "${FILESDIR}/pcsd.initd" pcsd || die - newinitd "${FILESDIR}/pcsd-daemon.initd" pcsd-daemon || die + newinitd "${FILESDIR}/pcsd.initd" pcsd + newinitd "${FILESDIR}/pcsd-daemon.initd" pcsd-daemon # move config files to right places - we use debian-style /etc/default - cp -a "${S}/pcs/settings.py.debian" "${D}/usr/lib/pcs/settings.py" - cp -a "${S}/pcsd/settings.rb.debian" "${D}/usr/lib/pcsd/settings.rb" + cp -a "${S}/pcs/settings.py.debian" "${D}/usr/lib/pcs/settings.py" || die + cp -a "${S}/pcsd/settings.rb.debian" "${D}/usr/lib/pcsd/settings.rb" || die python_foreach_impl python_optimize }