Hello community,

here is the log from the commit of package clusterssh for openSUSE:Factory 
checked in at 2020-05-28 09:13:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/clusterssh (Old)
 and      /work/SRC/openSUSE:Factory/.clusterssh.new.3606 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "clusterssh"

Thu May 28 09:13:58 2020 rev:13 rq:809114 version:4.15

Changes:
--------
--- /work/SRC/openSUSE:Factory/clusterssh/clusterssh.changes    2020-05-19 
14:46:31.763819731 +0200
+++ /work/SRC/openSUSE:Factory/.clusterssh.new.3606/clusterssh.changes  
2020-05-28 09:14:27.236686461 +0200
@@ -1,0 +2,7 @@
+Tue May 26 20:51:17 UTC 2020 - Petr Vorel <pvo...@suse.cz>
+
+- Backport fix for #133
+  https://github.com/duncs/clusterssh/pull/133
+  0001-helper-Fix-missing-space-separator-for-ssh_args.patch
+
+-------------------------------------------------------------------

New:
----
  0001-helper-Fix-missing-space-separator-for-ssh_args.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ clusterssh.spec ++++++
--- /var/tmp/diff_new_pack.TCqqPx/_old  2020-05-28 09:14:29.624687110 +0200
+++ /var/tmp/diff_new_pack.TCqqPx/_new  2020-05-28 09:14:29.628687112 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package clusterssh
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -27,6 +27,7 @@
 Source:         https://github.com/duncs/clusterssh/archive/v%dullver.tar.gz
 Source2:        %name-rpmlintrc
 Patch1:         perl_shebang.patch
+Patch2:         0001-helper-Fix-missing-space-separator-for-ssh_args.patch
 BuildArch:      noarch
 BuildRequires:  fdupes
 BuildRequires:  perl

++++++ 0001-helper-Fix-missing-space-separator-for-ssh_args.patch ++++++
>From bf6e9d06486b4c8f30d87a2b463992c4b892711e Mon Sep 17 00:00:00 2001
From: Petr Vorel <petr.vo...@gmail.com>
Date: Fri, 22 May 2020 11:14:51 +0200
Subject: [PATCH] helper: Fix missing space separator for ssh_args

Docs suggest using ssh_args without space at the end
ssh_args = "-x -o ConnectTimeout=10"

+ remove also trailing space in another line.

Fixes: 82f8845 ("Add in 'command_pre' and 'command_post' configs")

Signed-off-by: Petr Vorel <petr.vo...@gmail.com>
[ Upstream-status: https://github.com/duncs/clusterssh/pull/133 ]
---
 lib/App/ClusterSSH/Helper.pm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/App/ClusterSSH/Helper.pm b/lib/App/ClusterSSH/Helper.pm
index dbc5fb6..463a538 100644
--- a/lib/App/ClusterSSH/Helper.pm
+++ b/lib/App/ClusterSSH/Helper.pm
@@ -71,9 +71,9 @@ sub script {
            my \$user=shift;
            my \$port=shift;
            my \$mstr=shift;
-           my \$command="$command_pre $comms $comms_args";
+           my \$command="$command_pre $comms $comms_args ";
            open(PIPE, ">", \$pipe) or die("Failed to open pipe: \$!\\n");
-           print PIPE "\$\$:\$ENV{WINDOWID}" 
+           print PIPE "\$\$:\$ENV{WINDOWID}"
                or die("Failed to write to pipe: $!\\n");
            close(PIPE) or die("Failed to close pipe: $!\\n");
            if(\$svr =~ m/==\$/)
-- 
2.26.2


Reply via email to