-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathansible.cfg
29 lines (26 loc) · 1.22 KB
/
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
[defaults]
inventory = inventories/hosts
remote_user = vagrant
retry_files_enabled = false
roles_path = roles
remote_tmp = $HOME/.ansible/tmp
local_tmp = $HOME/.ansible/tmp
forks = 10
internal_poll_interval = 0.05
gathering = smart
gather_subset = all
gather_timeout = 60
host_key_checking = false
timeout = 30
[privilege_escalation]
become_method = sudo
[ssh_connection]
ssh_args = -C \
-o ControlMaster=auto \
-o ControlPersist=60s \
-o UserKnownHostsFile=/dev/null \
-o GSSAPIAuthentication=no \
-o PreferredAuthentications=publickey \
-o ConnectTimeout=20
control_path = %(directory)s/%%h-%%p-%%r
pipelining = false