forked from StreisandEffect/streisand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ansible.cfg
26 lines (21 loc) · 869 Bytes
/
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
[defaults]
inventory = inventories/inventory
nocows = 1
# This is a convenient setting for a brand-new Streisand server that
# you are connecting to for the first time. However, this line should be
# commented out if you are connecting to an existing server where a
# known_hosts entry has already been created. Host key checking happens
# by default in Ansible.
host_key_checking = False
# Workaround for an Ansible issue with temporary paths:
# https://github.com/ansible/ansible/issues/21562
remote_tmp = $HOME/.ansible/tmp
local_tmp = $HOME/.ansible/tmp
# Some providers take a long time to actually begin accepting
# connections even after the OpenSSH daemon has started.
timeout = 100
library=library
[ssh_connection]
# Enables multiplexing (lets ansible reuse opened SSH connections)
ssh_args = -o ControlMaster=auto -o ControlPersist=60s
pipelining = True