-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathansible.cfg
More file actions
39 lines (35 loc) · 969 Bytes
/
ansible.cfg
File metadata and controls
39 lines (35 loc) · 969 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[defaults]
# === Basic Settings ===
cow_selection = small
nocows = false
remote_user = root
inventory = ./inventory.ini
host_key_checking = False
timeout = 3000
retry_files_enabled = False
interpreter_python = auto
pipelining = True
# === Display / Output ===
bin_ansible_callbacks = True
deprecation_warnings = False
command_warnings = False
force_color = True
# === Misc ===
forks = 10
gathering = smart
fact_caching = jsonfile
fact_caching_connection = ./facts_cache
fact_caching_timeout = 86400
# === Misc ===
roles_path = ./roles:/usr/share/ansible/roles
library = ./library:/usr/share/ansible/plugins/modules
collections_paths = ./collections:/usr/share/ansible/collections
filter_plugins = ./plugins/filter:~/.ansible/plugins/filter:/usr/share/ansible/plugins/filter
[privilege_escalation]
become = true
become_method = sudo
become_ask_pass = false
become_user = root
[ssh_connection]
ssh_args = -o ControlMaster=auto -o ControlPersist=60s
pipelining = True