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.
This commit is contained in:
Reynir Björnsson 2023-03-07 13:14:47 +01:00
parent 32f25aeb8f
commit 3bddaaa22c
1 changed files with 1 additions and 0 deletions

View File

@ -1,3 +1,4 @@
[defaults]
remote_user = root
inventory = datacoop_hosts
use_persistent_connections = True