ansible-personal/ansible.cfg
Alan Orth 4f357f336f
ansible.cfg: Temporary workaround for Ansible > 2.4.0.0 connection issue
Not sure what causes it but I get timeouts when connecting to my hosts
with Ansible > 2.4.0.0 (tested 2.4.1.0 and current 2.5.0-devel). For
some reason switching to paramiko fixes it.
2017-10-30 16:21:35 +02:00

16 lines
314 B
INI

[defaults]
retry_files_enabled=False
force_handlers=True
inventory=hosts
# instead of using --ask-vault-pass
ask_vault_pass=True
# temporary workaround for timeout issues in ansible > 2.4.0.0
transport = paramiko
[privilege_escalation]
# instead of using -K
become_ask_pass=True
[ssh_connection]
pipelining=True