]> arthur.ath.cx Git - ansible-collection-boilerplate.git/blob - ansible.cfg
Makefile: Fix "distcheck" when there are multiple archives in "dist/" directory
[ansible-collection-boilerplate.git] / ansible.cfg
1 # Ansible configuration.
2 # See <https://github.com/ansible/ansible/blob/devel/examples/ansible.cfg>.
3
4 [defaults]
5 ansible_managed = Managed by Ansible, DO NOT MODIFY, changes will be overwritten!
6 check_mode_markers = yes
7 collections_path = ansible_galaxy
8 display_failed_stderr = yes
9 fact_caching = jsonfile
10 fact_caching_connection = .cache
11 fact_caching_timeout = 3600
12 gathering = smart
13 interpreter_python = auto_silent
14 inventory = hosts.ini
15 roles_path = ansible_galaxy/ansible_roles:roles
16 show_task_path_on_failure = yes
17 stdout_callback = yaml
18
19 [colors]
20 changed = bright yellow
21 error = bright red
22 ok = bright green
23
24 [diff]
25 always = True
26
27 [privilege_escalation]
28 become = True
29 become_ask_pass = True
30
31 [ssh_connection]
32 control_path = %(directory)s/%%h-%%p-%%r
33 pipelining = True