1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- [defaults]
- callback_plugins = callback_plugins/
- filter_plugins = filter_plugins/
- lookup_plugins = lookup_plugins/
- library = library/
- forks = 20
- host_key_checking = False
- retry_files_enabled = False
- retry_files_save_path = ~/ansible-installer-retries
- nocows = True
- remote_user = root
- roles_path = roles/
- gathering = smart
- fact_caching = jsonfile
- fact_caching_connection = $HOME/ansible/facts
- fact_caching_timeout = 600
- callback_whitelist = profile_tasks
- inventory_ignore_extensions = secrets.py, .pyc, .cfg, .crt
- timeout = 30
- [inventory]
- unparsed_is_failed=true
- [ssh_connection]
- pipelining = True
- ssh_args = -o ControlMaster=auto -o ControlPersist=600s
- timeout = 10
- control_path = %(directory)s/%%h-%%r
|