You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had this same problem in a similar implementation.
In our case, the home directory was /github/home/, but rsync/scp/ssh itself were using /root/.ssh/ !
So if you haven't tried it yet, I'd recommend trying -o UserKnownHostsFile= $SSH_PATH/known_hosts for the rsync SSH arg, or using SSH_PATH="/root/.ssh"
the public key for a known host is currently saved, but is not actually used.
The Rsync call still needs
ssh -o StrictHostKeyChecking=no
, otherwise we get a host key verification error.The text was updated successfully, but these errors were encountered: