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 E0C061382C5 for ; Tue, 23 Mar 2021 00:52:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2AB13E0833; Tue, 23 Mar 2021 00:52:45 +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 0A3C8E0825 for ; Tue, 23 Mar 2021 00:52:44 +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 CECBE33E690 for ; Tue, 23 Mar 2021 00:52:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3D68E5B8 for ; Tue, 23 Mar 2021 00:52:42 +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: <1616458083.d27729f7c428e3c7e2486eced460e225e9b0b4c7.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev 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: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: d27729f7c428e3c7e2486eced460e225e9b0b4c7 X-VCS-Branch: dev Date: Tue, 23 Mar 2021 00:52:42 +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: c27433ef-1bd7-40fc-8556-a75a6876b3fd X-Archives-Hash: 2f8607a56f131674d91d38252dfe41e9 commit: d27729f7c428e3c7e2486eced460e225e9b0b4c7 Author: Alessandro Barbieri gmail com> AuthorDate: Tue Mar 23 00:08:03 2021 +0000 Commit: Alessandro Barbieri gmail com> 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 a83f9773..e41199e8 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 }