-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathansible.cfg
executable file
·30 lines (21 loc) · 1.06 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
30
################################################################################
# Copyright (c) IBM Corporation 2020
################################################################################
################################################################################
# For for on ansible.cfg optons see:
# https://docs.ansible.com/ansible/latest/reference_appendices/config.html
################################################################################
[defaults]
forks = 25
callback_whitelist = profile_tasks
transport = ssh
# sftp transfers as binary (maintain ascii format), scp will be transferred as ascii (automatically converted to ebcdic)
transfer_method = fscp
scp_if_ssh = False
# uncomment this to disable SSH key host checking
host_key_checking = False
# Use the YAML callback plugin. Default is skippy
stdout_callback = yaml
[ssh_connection]
pipelining = True
ssh_args = -C -o ControlMaster=auto -o ControlPersist=1200s -o PreferredAuthentications=publickey -o ForwardAgent=yes -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null