mitogen/tests/ansible/ansible.cfg

23 lines
592 B
INI
Raw Normal View History

2018-02-14 16:33:11 +00:00
[defaults]
inventory = hosts,lib/inventory
gathering = explicit
strategy_plugins = ../../ansible_mitogen/plugins/strategy
action_plugins = lib/action
callback_plugins = lib/callback
2018-06-10 14:03:34 +00:00
stdout_callback = nice_stdout
vars_plugins = lib/vars
2018-04-05 16:26:43 +00:00
library = lib/modules
module_utils = lib/module_utils
2018-02-14 16:33:11 +00:00
retry_files_enabled = False
2018-03-15 19:27:20 +00:00
forks = 50
2018-02-14 16:33:11 +00:00
# Required by integration/ssh/timeouts.yml
timeout = 10
# On Travis, paramiko check fails due to host key checking enabled.
host_key_checking = False
2018-02-14 16:33:11 +00:00
[ssh_connection]
2018-03-02 13:50:10 +00:00
ssh_args = -o ForwardAgent=yes -o ControlMaster=auto -o ControlPersist=60s
2018-02-14 16:33:11 +00:00
pipelining = True