From a72f074a178e1788da6a4c295fd12f8fd1dd924b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Mon, 1 Feb 2021 13:22:40 +0100 Subject: [PATCH] ansible.cfg: enable ansible ssh multiplexing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- ansible.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible.cfg b/ansible.cfg index 5bf586f..d41630c 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -21,4 +21,4 @@ become_user = root pipelining = True control_path = /tmp/ansible-ssh-%%h-%%p-%%r # necessary for cloning private git repos -ssh_args=-o ForwardAgent=yes -o ConnectTimeout=360 +ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o ForwardAgent=yes -o ConnectTimeout=360