Change some configuration defaults.

This commit is contained in:
Andrea Dell'Amico 2018-10-17 14:00:48 +02:00
parent 6d6665f05f
commit 47148c448d
1 changed files with 3 additions and 0 deletions

View File

@ -39,5 +39,8 @@ ansible_config_options:
- { section: 'defaults', option: 'fact_caching', value: 'memory', state: 'present' } - { section: 'defaults', option: 'fact_caching', value: 'memory', state: 'present' }
- { section: 'defaults', option: 'retry_files_enabled', value: True, state: 'present' } - { section: 'defaults', option: 'retry_files_enabled', value: True, state: 'present' }
- { section: 'defaults', option: 'retry_files_save_path', value: '~/.ansible_retry', state: 'present' } - { section: 'defaults', option: 'retry_files_save_path', value: '~/.ansible_retry', state: 'present' }
- { section: 'defaults', option: 'callback_whitelist', value: 'timer', state: 'present' }
- { section: 'ssh_connection', option: 'control_path', value: '{{ ansible_control_path }}', state: 'present' } - { section: 'ssh_connection', option: 'control_path', value: '{{ ansible_control_path }}', state: 'present' }
- { section: 'ssh_connection', option: 'pipelining', value: '{{ ansible_pipelining }}', state: 'present' } - { section: 'ssh_connection', option: 'pipelining', value: '{{ ansible_pipelining }}', state: 'present' }
- { section: 'ssh_connection', option: 'retries', value: '3', state: 'present' }