------------------------- * MODIFY: - modified ansible.cfg to be inline with our most recent needs - DOCKER_IMG_TAG now reflects the current CentOS 7 release (not that it's actually used...) - runner has been changed to our newly minted zen-ci node; i expect this to fail while i finalize the setup
23 lines
741 B
INI
23 lines
741 B
INI
[defaults]
|
|
inventory = /etc/ansible/hosts
|
|
roles_path = /etc/ansible/roles
|
|
remote_tmp = /tmp/.ansible-${USER}/tmp
|
|
gathering = smart
|
|
gather_timeout = 30
|
|
fact_path = /etc/ansible/facts.d
|
|
fact_caching = jsonfile
|
|
fact_caching_connection = /etc/ansible/facts.d
|
|
fact_caching_timeout = 1800
|
|
retry_files_enabled = False
|
|
forks = 8
|
|
timeout = 30
|
|
host_key_checking = False
|
|
display_skipped_hosts = False
|
|
interpreter_python = auto_silent
|
|
# ansible_python_interpreter=/usr/bin/python3
|
|
|
|
|
|
[ssh_connection]
|
|
pipelining = True
|
|
ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o PreferredAuthentications=publickey
|