From 3bddaaa22c7b10a940aa8e9d9d062a0488b9aa67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reynir=20Bj=C3=B6rnsson?= Date: Tue, 7 Mar 2023 13:14:47 +0100 Subject: [PATCH] ansible.cfg use persistent connections This makes ansible try to use one ssh connection for everything. This greatly reduces the number of TCP connections and authentication attempts. --- ansible.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible.cfg b/ansible.cfg index d69e51f..42063be 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -1,3 +1,4 @@ [defaults] remote_user = root inventory = datacoop_hosts +use_persistent_connections = True