29 lines
473 B
INI
29 lines
473 B
INI
# 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}
|
|
|
|
# Do not create retry files
|
|
retry_files_enabled = False
|
|
|
|
# Do not use cows (with cowsay)
|
|
nocows = 1
|
|
|
|
[privilege_escalation]
|
|
|
|
# Use sudo to get priviledge access
|
|
become = True
|
|
|
|
# Ask for password
|
|
become_ask_pass = True
|
|
|
|
[diff]
|
|
|
|
# TO know what changed
|
|
always = yes
|
|
|