-
Notifications
You must be signed in to change notification settings - Fork 33
/
ansible.cfg
33 lines (29 loc) · 946 Bytes
/
ansible.cfg
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
[defaults]
#strategy = free
strategy = linear
# Facts gathering and caching
gathering = smart
fact_caching_timeout = 86400
fact_caching = jsonfile
fact_caching_connection = /tmp/ansible_facts_cache.json
# Callback and logging
stdout_callback = debug
nocows = 1
log_path = /tmp/ansible.log
display_skipped_hosts = no
display_args_to_stdout = False
deprecation_warnings = True
#callback_whitelist = profile_tasks
# Inventory and connectivity
inventory = hosts
remote_user = vagrant
host_key_checking = False
forks = 20
pipelining = True
remote_tmp = /tmp/.ansible
#ansible_python_interpreter = /usr/bin/python3
[privilege_escalation]
become = True
become_method = sudo
become_user = root
become_ask_pass = False