From 367c453f7b59a40a89ff48cbebe7e3493b4ed93e Mon Sep 17 00:00:00 2001 From: Salt Date: Mon, 7 Mar 2022 10:56:11 -0600 Subject: [PATCH] Enable retries of SSH commands Note that this might cause weird intermittent failures. But it's better than unreachability straight from the get-go --- ansible.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible.cfg b/ansible.cfg index c45fe96..f0f0531 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -10,4 +10,5 @@ system_warnings = true [ssh_connection] pipelining = true +retries = 5 ssh_extra_args = -o ForwardAgent=yes -o StrictHostKeyChecking=no