From 5e4ceb1b73bb4376f4c474cc424439423e34a8ea Mon Sep 17 00:00:00 2001 From: Tim Hockin Date: Wed, 17 Jan 2024 01:23:58 +0000 Subject: [PATCH] Add '-F none' to e2e git SSH command for weird environments --- test_e2e.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_e2e.sh b/test_e2e.sh index d979e4036..147519d3b 100755 --- a/test_e2e.sh +++ b/test_e2e.sh @@ -2869,7 +2869,7 @@ function e2e::submodule_sync_over_ssh_different_keys() { IP_SUBSUB=$(docker_ip "$CTR_SUBSUB") # Tell local git not to do host checking and to use the test keys. - export GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i $DOT_SSH/1/id_local -i $DOT_SSH/2/id_local" + export GIT_SSH_COMMAND="ssh -F none -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i $DOT_SSH/1/id_local -i $DOT_SSH/2/id_local" # Init submodule repo SUBMODULE_REPO_NAME="sub"