forked from data.coop/ansible
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:
parent
32f25aeb8f
commit
3bddaaa22c
|
@ -1,3 +1,4 @@
|
||||||
[defaults]
|
[defaults]
|
||||||
remote_user = root
|
remote_user = root
|
||||||
inventory = datacoop_hosts
|
inventory = datacoop_hosts
|
||||||
|
use_persistent_connections = True
|
||||||
|
|
Loading…
Reference in a new issue