-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathansible.cfg
More file actions
29 lines (26 loc) · 843 Bytes
/
ansible.cfg
File metadata and controls
29 lines (26 loc) · 843 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
# nearly all parameters can be overridden in ansible-playbook
# or with command line flags. ansible will read ~/.ansible.cfg,
# ansible.cfg in the current working directory or
# /etc/ansible/ansible.cfg, whichever it finds first
[defaults]
forks = 50
poll_interval = 15
become_user = root
remote_port = 22
host_key_checking = False
become_exe = sudo
timeout = 60
callback_whitelist = timer, profile_tasks
display_skipped_hosts = no
force_color = True
stdout_callback = yaml
bin_ansible_callbacks = True
gather_subset=!all,min,facter,!hardware,!network,!virtual,!ohai
[paramiko_connection]
record_host_keys = False
host_key_checking = False
[ssh_connection]
ssh_args = -o ControlMaster=no -o ControlPersist=60s -o ControlPath=/tmp/ssh-%h -o StrictHostKeyChecking=no
scp_if_ssh = True
retries = 2
pipelining = True