31 lines
1.2 KiB
INI
31 lines
1.2 KiB
INI
[defaults]
|
|
inventory = /data/ansible/ansible.d/inventory
|
|
private_key_file = /data/ansible/ansible.d/ansible.key
|
|
log_path = /data/ansible/ansible.d/ansible.log
|
|
roles_path = ~/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles:/data/ansible/roles/
|
|
collections_paths = ~/.ansible/collections:/usr/share/ansible/collections:/data/ansible/collections
|
|
library = ~/.ansible/plugins/modules:/usr/share/ansible/plugins/modules:/data/ansible/ansible.d/modules
|
|
playbook_vars_root = /data/ansible/ansible.d/
|
|
|
|
stdout_callback = yaml
|
|
forks = 10
|
|
#poll_interval = 0.001
|
|
#ask_pass = False
|
|
#transport = smart
|
|
host_key_checking = True
|
|
gathering = smart
|
|
gather_subset = all
|
|
gather_timeout = 10
|
|
fact_caching = jsonfile
|
|
fact_caching_connection = /data/ansible/ansible.d/cache.d
|
|
fact_caching_timeout = 3600
|
|
callbacks_enabled = timer
|
|
nocows = 1
|
|
|
|
[inventory]
|
|
#enable_plugins = host_list, script, auto, yaml, ini, toml
|
|
|
|
[privilege_escalation]
|
|
become_method = sudo
|
|
#become = False
|
|
#become_ask_pass = False |