ansible/roles/copr/backend/files/ssh_config
Pavel Raiskup bb5bbf2704 copr-be: better ssh client configuration
- don't wait too long for SSH connection timeout (set it to 60s), we
  we will be restarting the build by backend when the last 4 attempts to
  contact builder failed more quickly than each 2 minutes.
- make the keep alive interval much smaller than the connection timeout
  is
2020-06-04 21:18:38 +02:00

7 lines
170 B
Text

Host *
IdentityFile ~/.ssh/id_rsa
StrictHostKeyChecking no
UserKnownHostsFile /dev/null
ServerAliveInterval 20
ServerAliveCountMax 5
ConnectTimeout 60