Migrate to ed25519 key, change id_rsa to identity file name

This commit is contained in:
2020-05-17 10:38:33 +02:00
parent bf20dd04c3
commit bfda197c4d
2 changed files with 4 additions and 4 deletions

View File

@@ -13,6 +13,6 @@ function prepareGitAuth(){
# git configure http authenticator
git config --global credential.helper "store --file=$confdir/git-credentials"
# git configure ssh auth
git config --global core.sshcommand "ssh -i $confdir/ssh/id_rsa -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o BatchMode=yes -q"
git config --global core.sshcommand "ssh -i $confdir/ssh/identity -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o BatchMode=yes -q"
}