public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/rdma-core/files/
@ 2019-09-13 14:33 Mikle Kolyada
  0 siblings, 0 replies; 3+ messages in thread
From: Mikle Kolyada @ 2019-09-13 14:33 UTC (permalink / raw
  To: gentoo-commits

commit:     ac3351ca355d497b62c9f9edad10a8e34a488b3d
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 13 14:33:23 2019 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Sep 13 14:33:44 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac3351ca

sys-cluster/rdma-core: fix quotes

Closes: https://bugs.gentoo.org/589728
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 sys-cluster/rdma-core/files/srpd.init | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/rdma-core/files/srpd.init b/sys-cluster/rdma-core/files/srpd.init
index c54e5d81ed5..07f5ec2d29a 100644
--- a/sys-cluster/rdma-core/files/srpd.init
+++ b/sys-cluster/rdma-core/files/srpd.init
@@ -7,7 +7,7 @@ pidfile="/run/${SVCNAME}.pid"
 start_stop_daemon_args="-b -m"
 
 rdma_config="/etc/infiniband/openib.conf"
-[ -f ${rdma_config} ] && source ${rdma_config}"
+[ -f ${rdma_config} ] && source ${rdma_config}
 
 [ ${SRP_DEFAULT_TL_RETRY_COUNT} ] && command_args="-l ${SRP_DEFAULT_TL_RETRY_COUNT}"
 


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/rdma-core/files/
@ 2021-11-19 16:27 Guilherme Amadio
  0 siblings, 0 replies; 3+ messages in thread
From: Guilherme Amadio @ 2021-11-19 16:27 UTC (permalink / raw
  To: gentoo-commits

commit:     61206a8b1876ead2583191976a8d104f5f54ddac
Author:     Guilherme Amadio <amadio <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 19 14:11:51 2021 +0000
Commit:     Guilherme Amadio <amadio <AT> gentoo <DOT> org>
CommitDate: Fri Nov 19 16:27:29 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61206a8b

sys-cluster/rdma-code: fix bashism in srpd.init

 * QA Notice: shell script appears to use non-POSIX feature(s):
 *    possible bashism in /etc/init.d/srpd line 10 (should be '.', not 'source'):
 *    [ -f ${rdma_config} ] && source ${rdma_config}

Signed-off-by: Guilherme Amadio <amadio <AT> gentoo.org>

 sys-cluster/rdma-core/files/srpd.init | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/rdma-core/files/srpd.init b/sys-cluster/rdma-core/files/srpd.init
index 07f5ec2d29a7..ac6db2ffad9b 100644
--- a/sys-cluster/rdma-core/files/srpd.init
+++ b/sys-cluster/rdma-core/files/srpd.init
@@ -7,7 +7,7 @@ pidfile="/run/${SVCNAME}.pid"
 start_stop_daemon_args="-b -m"
 
 rdma_config="/etc/infiniband/openib.conf"
-[ -f ${rdma_config} ] && source ${rdma_config}
+[ -f ${rdma_config} ] && . ${rdma_config}
 
 [ ${SRP_DEFAULT_TL_RETRY_COUNT} ] && command_args="-l ${SRP_DEFAULT_TL_RETRY_COUNT}"
 


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/rdma-core/files/
@ 2021-12-28  2:36 Brian Evans
  0 siblings, 0 replies; 3+ messages in thread
From: Brian Evans @ 2021-12-28  2:36 UTC (permalink / raw
  To: gentoo-commits

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}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-12-28  2:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-19 16:27 [gentoo-commits] repo/gentoo:master commit in: sys-cluster/rdma-core/files/ Guilherme Amadio
  -- strict thread matches above, loose matches on Subject: below --
2021-12-28  2:36 Brian Evans
2019-09-13 14:33 Mikle Kolyada

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox