diff options
author | Sunny Kumar <sunkumar@redhat.com> | 2019-12-16 12:52:41 +0000 |
---|---|---|
committer | hari gowtham <hari.gowtham005@gmail.com> | 2019-12-24 05:20:57 +0000 |
commit | 0ff62bab64b184cba25655f553fee1649826345b (patch) | |
tree | 889b25a8f7ea83ce91a1d2bde85855ac26c8de43 | |
parent | 78b63e0feed1937cae66156ea455a3977847a2fd (diff) |
test: fix non-root test case for geo-rep
Problem:
On a freshly installed system non-root geo-rep test case gets blocked.
Solution:
On a freshly installed system, the remote key need to be accepted automatically by ssh-copy-id.
Credits: M. Scherer <mscherer@redhat.com>
Backport of:
> Change-Id: I5077f99a6681660f7e3e84c25ef216f521b7c29c
> Fixes: bz#1779742
> Signed-off-by: Sunny Kumar <sunkumar@redhat.com>
Change-Id: I5077f99a6681660f7e3e84c25ef216f521b7c29c
Fixes: bz#1784796
Signed-off-by: Sunny Kumar <sunkumar@redhat.com>
-rw-r--r-- | tests/00-geo-rep/00-georep-verify-non-root-setup.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/00-geo-rep/00-georep-verify-non-root-setup.t b/tests/00-geo-rep/00-georep-verify-non-root-setup.t index 076c0c92b08..ed7e589101d 100644 --- a/tests/00-geo-rep/00-georep-verify-non-root-setup.t +++ b/tests/00-geo-rep/00-georep-verify-non-root-setup.t @@ -177,7 +177,7 @@ export DISPLAY export SSH_ASKPASS=${SSH_ASKPASS_SCRIPT} -DISPLAY=: setsid ssh-copy-id -i ~/.ssh/id_rsa.pub $ssh_url +DISPLAY=: setsid ssh-copy-id -o 'PreferredAuthentications=password' -o 'StrictHostKeyChecking=no' -i ~/.ssh/id_rsa.pub $ssh_url ##Setting up PATH for gluster binaries in case of source installation ##ssh -oNumberOfPasswordPrompts=0 -oStrictHostKeyChecking=no $ssh_url "echo "export PATH=$PATH:/usr/local/sbin" >> ~/.bashrc" |