ansible/ansible.cfg

33 lines
507 B
INI
Raw Normal View History

2019-02-19 11:27:37 +01:00
# Aurore Ansible configuration
[defaults]
# Use Aurore inventory
inventory = ./hosts
# Custom header in templates
ansible_managed = Ansible managed: {file} modified on %Y-%m-%d %H:%M:%S by {uid} on {host}
2019-02-25 13:05:31 +01:00
# Do not create retry files
retry_files_enabled = False
2019-02-19 11:27:37 +01:00
# Do not use cows (with cowsay)
nocows = 1
2019-04-07 17:00:29 +02:00
# Do more parallelism
forks = 15
2019-02-19 11:27:37 +01:00
[privilege_escalation]
# Use sudo to get priviledge access
become = True
# Ask for password
become_ask_pass = True
[diff]
# TO know what changed
always = yes