diff options
author | Sunny Kumar <sunkumar@redhat.com> | 2019-02-21 10:51:13 +0530 |
---|---|---|
committer | Amar Tumballi <amarts@redhat.com> | 2019-02-25 05:21:17 +0000 |
commit | 2236c8d3a1e9191d3505e6c1b14022a221aeeb7d (patch) | |
tree | 4de452caccd7030bcbfcae32acf586ce0050016f /geo-replication/src/peer_georep-sshkey.py.in | |
parent | b235a56394c09bb1d7308a620053dbe098d15967 (diff) |
geo-rep : fix incorrectly formatted authorized_keys
Problem : While Geo-rep setup when creating an ssh authorized_keys
the geo-rep setup inserts an extra space before the "ssh-rsa" label.
This gets flagged by an enterprise customer's security scan as a
security violation.
Solution: Remove extra space in GSYNCD_CMD & TAR_CMD.
Change-Id: I956f938faef0e0883703bbc337b1dc2770e4a921
fixes: bz#1679401
Signed-off-by: Sunny Kumar <sunkumar@redhat.com>
Diffstat (limited to 'geo-replication/src/peer_georep-sshkey.py.in')
-rw-r--r-- | geo-replication/src/peer_georep-sshkey.py.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/geo-replication/src/peer_georep-sshkey.py.in b/geo-replication/src/peer_georep-sshkey.py.in index 2196fd7491a..58696e9a616 100644 --- a/geo-replication/src/peer_georep-sshkey.py.in +++ b/geo-replication/src/peer_georep-sshkey.py.in @@ -30,8 +30,8 @@ from prettytable import PrettyTable SECRET_PEM = "@GLUSTERD_WORKDIR@/geo-replication/secret.pem" TAR_SSH_PEM = "@GLUSTERD_WORKDIR@/geo-replication/tar_ssh.pem" -GSYNCD_CMD = 'command="@GLUSTERFS_LIBEXECDIR@/gsyncd" ' -TAR_CMD = 'command="tar ${SSH_ORIGINAL_COMMAND#* }" ' +GSYNCD_CMD = 'command="@GLUSTERFS_LIBEXECDIR@/gsyncd" ' +TAR_CMD = 'command="tar ${SSH_ORIGINAL_COMMAND#* }" ' COMMON_SECRET_FILE = "@GLUSTERD_WORKDIR@/geo-replication/common_secret.pem.pub" |