-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.ansible.cfg
More file actions
28 lines (26 loc) · 792 Bytes
/
.ansible.cfg
File metadata and controls
28 lines (26 loc) · 792 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
# config file for ansible -- http://ansible.com/
# ==============================================
[defaults]
# See https://bugzilla.redhat.com/show_bug.cgi?id=1382492 for justification behind forks = 20
forks = 20
host_key_checking = False
remote_user = root
roles_path = roles/
gathering = smart
fact_caching = jsonfile
fact_caching_connection = $HOME/ansible/facts
fact_caching_timeout = 600
log_path = $HOME/ansible.log
nocows = 1
callback_whitelist = profile_tasks
ansible_python_interpreter=/usr/bin/python2
internal_poll_interval = 0.05
[privilege_escalation]
become = True
[ssh_connection]
#scp_if_ssh = True
ssh_args = -o ControlMaster=auto -o ControlPersist=600s -o PreferredAuthentications=publickey
control_path = %(directory)s/%%h-%%r
pipelining = True
timeout = 10
retries = 5