From: alex Date: Sat, 20 Jul 2024 19:30:17 +0000 (+0200) Subject: Try disabling SSH control sockets in Ansible for reliability X-Git-Tag: 20241020-emacs~119 X-Git-Url: https://xn--ix-yja.es/gitweb/?a=commitdiff_plain;h=e06ee1d0064e17f098fd1f3e1b5b6a29483b1a8f;p=alex.git Try disabling SSH control sockets in Ansible for reliability --- diff --git a/personal_infra/ansible.cfg b/personal_infra/ansible.cfg index c7e2ae6..9440484 100644 --- a/personal_infra/ansible.cfg +++ b/personal_infra/ansible.cfg @@ -5,3 +5,6 @@ callbacks_enabled = ansible.posix.profile_tasks # TODO: Using a SSH password instead of a key is not possible because Host Key checking is enabled and sshpass does not support this. Please add this host's fingerprint to your known_hosts file to manage this host. host_key_checking = False + +[ssh_connection] +ssh_args = -o ControlMaster=no