runconfig: disable password authentication in clone step
If for some reasons the ssh public key auth fails, avoid the clone step to block during a git clone waiting for a password.
This commit is contained in:
parent
92e509cb3e
commit
e20abf053c
|
@ -109,6 +109,7 @@ Host $AGOLA_GIT_HOST
|
||||||
HostName $AGOLA_GIT_HOST
|
HostName $AGOLA_GIT_HOST
|
||||||
Port $AGOLA_GIT_PORT
|
Port $AGOLA_GIT_PORT
|
||||||
StrictHostKeyChecking ${STRICT_HOST_KEY_CHECKING}
|
StrictHostKeyChecking ${STRICT_HOST_KEY_CHECKING}
|
||||||
|
PasswordAuthentication no
|
||||||
EOF
|
EOF
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue