Alan Orth
4f357f336f
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.
16 lines
314 B
INI
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
|