Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions ansible.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ inventory=inventory
# desired when reviewing the error output from either ansible or ansible-playbook command.
# There is a known Ansible bug. Comment either stdout_callback=yaml or bin_ansible_callbacks=True
# to allow stdout from ansible -m shell -a commands to be viewed at the command line.
#


# Use the YAML callback plugin.
stdout_callback=yaml
Expand All @@ -36,7 +36,12 @@ ansible_python_interpreter=/usr/bin/python3

forks=20

internal_poll_interval = 0.05
internal_poll_interval = 0.001

gathering=smart
fact_caching=jsonfile
fact_caching_connection=/tmp/ansible_cache
fact_caching_timeout=86400

[ssh_connection]
pipelining=True
Expand Down
Loading