create the directory structure

This commit is contained in:
Jean-Marie Mineau 2021-09-08 15:59:32 +02:00
commit cb7dc99f5b
No known key found for this signature in database
GPG key ID: 67486F107F62E9E9
7 changed files with 694 additions and 0 deletions

41
ansible.cfg Normal file
View file

@ -0,0 +1,41 @@
# Ansible configuration
[defaults]
# Do not create .retry files
retry_files_enabled = False
# Use inventory
inventory = ./hosts
# roles location
roles_path = ./roles
# Custom header in templates
ansible_managed = Ansible managed
# Do not use cows (with cowsay)
nocows = 1
# Do more parallelism
forks = 15
# Some SSH connection will take time
timeout = 60
[privilege_escalation]
# Use sudo to get priviledge access
become = True
# Ask for password
become_ask_pass = True
[diff]
# TO know what changed
always = yes
[ssh_connection]
pipelining = True