74b1de
From 1df830953b9a09404f9ca6a0539172e9f23ecbf4 Mon Sep 17 00:00:00 2001
74b1de
From: Sunny Kumar <sunkumar@redhat.com>
74b1de
Date: Wed, 17 Apr 2019 15:13:12 +0530
74b1de
Subject: [PATCH 112/124] geo-rep : fix incorrectly formatted authorized_keys
74b1de
74b1de
Problem :  While Geo-rep setup when creating an ssh authorized_keys
74b1de
           the geo-rep setup inserts an extra space before the "ssh-rsa" label.
74b1de
           This gets flagged by an enterprise customer's security scan as a
74b1de
           security violation.
74b1de
74b1de
Solution: Remove extra space in GSYNCD_CMD & TAR_CMD.
74b1de
74b1de
>Upstream patch: https://review.gluster.org/#/c/glusterfs/+/22246/
74b1de
>Change-Id: I956f938faef0e0883703bbc337b1dc2770e4a921
74b1de
>fixes: bz#1679401
74b1de
>Signed-off-by: Sunny Kumar <sunkumar@redhat.com>
74b1de
74b1de
BUG: 1671862
74b1de
Change-Id: I194a2bddcf2ee9b8286b204f8c4da5c480a528b3
74b1de
Signed-off-by: Sunny Kumar <sunkumar@redhat.com>
74b1de
Reviewed-on: https://code.engineering.redhat.com/gerrit/168144
74b1de
Tested-by: RHGS Build Bot <nigelb@redhat.com>
74b1de
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
74b1de
---
74b1de
 geo-replication/src/peer_georep-sshkey.py.in | 4 ++--
74b1de
 1 file changed, 2 insertions(+), 2 deletions(-)
74b1de
74b1de
diff --git a/geo-replication/src/peer_georep-sshkey.py.in b/geo-replication/src/peer_georep-sshkey.py.in
74b1de
index 2196fd7..58696e9 100644
74b1de
--- a/geo-replication/src/peer_georep-sshkey.py.in
74b1de
+++ b/geo-replication/src/peer_georep-sshkey.py.in
74b1de
@@ -30,8 +30,8 @@ from prettytable import PrettyTable
74b1de
 
74b1de
 SECRET_PEM = "@GLUSTERD_WORKDIR@/geo-replication/secret.pem"
74b1de
 TAR_SSH_PEM = "@GLUSTERD_WORKDIR@/geo-replication/tar_ssh.pem"
74b1de
-GSYNCD_CMD = 'command="@GLUSTERFS_LIBEXECDIR@/gsyncd"  '
74b1de
-TAR_CMD = 'command="tar ${SSH_ORIGINAL_COMMAND#* }"  '
74b1de
+GSYNCD_CMD = 'command="@GLUSTERFS_LIBEXECDIR@/gsyncd" '
74b1de
+TAR_CMD = 'command="tar ${SSH_ORIGINAL_COMMAND#* }" '
74b1de
 COMMON_SECRET_FILE = "@GLUSTERD_WORKDIR@/geo-replication/common_secret.pem.pub"
74b1de
 
74b1de
 
74b1de
-- 
74b1de
1.8.3.1
74b1de