From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1353185-garchives=archives.gentoo.org@lists.gentoo.org> 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 26D74158086 for <garchives@archives.gentoo.org>; Tue, 28 Dec 2021 02:36:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2D1D82BC012; Tue, 28 Dec 2021 02:36:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 516382BC012 for <gentoo-commits@lists.gentoo.org>; Tue, 28 Dec 2021 02:36:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 E152F342E5A for <gentoo-commits@lists.gentoo.org>; Tue, 28 Dec 2021 02:36:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4CF15264 for <gentoo-commits@lists.gentoo.org>; Tue, 28 Dec 2021 02:36:50 +0000 (UTC) From: "Brian Evans" <grknight@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" <grknight@gentoo.org> Message-ID: <1640659000.e37e57699e0765d4a2d33e2a445c008cec7119bd.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/rdma-core/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/rdma-core/files/ibacm.init sys-cluster/rdma-core/files/iwpmd.init sys-cluster/rdma-core/files/srpd.init X-VCS-Directories: sys-cluster/rdma-core/files/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: e37e57699e0765d4a2d33e2a445c008cec7119bd X-VCS-Branch: master Date: Tue, 28 Dec 2021 02:36:50 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c6d4eb8f-6e02-45db-b63e-1398e7448018 X-Archives-Hash: 9e15e713362bc0e29fa6ef661ba20bc9 commit: e37e57699e0765d4a2d33e2a445c008cec7119bd Author: Brian Evans <grknight <AT> gentoo <DOT> org> AuthorDate: Tue Dec 28 01:31:38 2021 +0000 Commit: Brian Evans <grknight <AT> gentoo <DOT> org> CommitDate: Tue Dec 28 02:36:40 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e37e5769 sys-cluster/rdma-core: Improve OpenRC script variables Use command_background to allow for portablility instead of using start_stop_daemon_args. This enables users to leverage supervise-daemon. The changed setting has no effect for working installs. Fine to wait on new builds. Closes: https://bugs.gentoo.org/828096 Signed-off-by: Brian Evans <grknight <AT> gentoo.org> sys-cluster/rdma-core/files/ibacm.init | 4 ++-- sys-cluster/rdma-core/files/iwpmd.init | 4 ++-- sys-cluster/rdma-core/files/srpd.init | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sys-cluster/rdma-core/files/ibacm.init b/sys-cluster/rdma-core/files/ibacm.init index 719accfa95c8..e87321aae596 100644 --- a/sys-cluster/rdma-core/files/ibacm.init +++ b/sys-cluster/rdma-core/files/ibacm.init @@ -1,7 +1,7 @@ #!/sbin/openrc-run -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 command="/usr/sbin/ibacm" pidfile="/run/${SVCNAME}.pid" -start_stop_daemon_args="-b -m" +command_background="yes" diff --git a/sys-cluster/rdma-core/files/iwpmd.init b/sys-cluster/rdma-core/files/iwpmd.init index b1ffa33fcc8a..c377b1e7d547 100644 --- a/sys-cluster/rdma-core/files/iwpmd.init +++ b/sys-cluster/rdma-core/files/iwpmd.init @@ -1,7 +1,7 @@ #!/sbin/openrc-run -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 command="/usr/sbin/iwpmd" pidfile="/run/${SVCNAME}.pid" -start_stop_daemon_args="-b -m" +command_background="yes" diff --git a/sys-cluster/rdma-core/files/srpd.init b/sys-cluster/rdma-core/files/srpd.init index ac6db2ffad9b..28d21b264992 100644 --- a/sys-cluster/rdma-core/files/srpd.init +++ b/sys-cluster/rdma-core/files/srpd.init @@ -1,10 +1,10 @@ #!/sbin/openrc-run -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 command="/usr/sbin/srp_daemon.sh" pidfile="/run/${SVCNAME}.pid" -start_stop_daemon_args="-b -m" +command_background="yes" rdma_config="/etc/infiniband/openib.conf" [ -f ${rdma_config} ] && . ${rdma_config}