From e06ee1d0064e17f098fd1f3e1b5b6a29483b1a8f Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 20 Jul 2024 21:30:17 +0200 Subject: [PATCH] Try disabling SSH control sockets in Ansible for reliability --- personal_infra/ansible.cfg | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.47.3