ansible_playbooks/ansible.cfg
2026-02-24 11:30:35 +03:00

30 lines
641 B
INI
Executable file

[defaults]
inventory = ./inventory/hosts.yml
host_key_checking = False
pipelining = True
forks = 10
strategy = free
stdout_callback = default
callback_whitelist = default
callback_default_result_format = yaml
remote_user = ansible
python_interpreter = /usr/bin/python3
gathering = smart
fact_caching_timeoout = 86400
fact_caching = jsonfile
fact_caching_connection = /tmp/ansible_fact_cache
[privilege_escalation]
become = True
become_method = sudo
become_user = root
[persistent_connections]
pipelining = True
[ssh_connection]
ssh_args = -o ControlMaster=auto -o ControlPersist=60s
retries = 3
[logging]
log_path = /var/log/ansible.log