32 lines
808 B
Markdown
32 lines
808 B
Markdown
#/home/tom/Documents/Opendoor/Formations/Orsys/SIB/Exercices/1_configuration/ansible.cfg
|
|
|
|
grep -v -E '^(\s+#|#|$)' /etc/ansible/ansible.cfg
|
|
|
|
[defaults]
|
|
forks = 20
|
|
ask_pass = True
|
|
gathering = smart
|
|
host_key_checking = False
|
|
callback_whitelist = timer, profile_tasks
|
|
remote_user = formation
|
|
fact_caching = jsonfile
|
|
fact_caching_connection = /etc/ansible/facts
|
|
fact_caching_timeout = 86400
|
|
retry_files_enabled = False
|
|
[inventory]
|
|
[privilege_escalation]
|
|
become = True
|
|
become_ask_pass = True
|
|
[paramiko_connection]
|
|
[ssh_connection]
|
|
pipelining = True
|
|
[persistent_connection]
|
|
[accelerate]
|
|
[selinux]
|
|
[colors]
|
|
[diff]
|
|
|
|
mkdir -m 1777 /etc/ansible/facts
|
|
|
|
ansible-config dump
|