blob: 5ad3e6e0da39595c4ee086e79acf148aab7da678 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#
# Ansible local config file
# See `/etc/ansible/ansible.cfg' for the global config file.
#
# Aaron LI
# 2018-02-12
#
[defaults]
inventory = ./hosts.yml
# uncomment this to disable SSH key host checking
#host_key_checking = False
[ssh_connection]
pipelining = True
# SSH arguments to use
# Add 'IdentitiesOnly=yes'
ssh_args = -C -o ControlMaster=auto -o ControlPersist=60s -o IdentitiesOnly=yes
|