summaryrefslogtreecommitdiffstats
path: root/ansible.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'ansible.cfg')
-rw-r--r--ansible.cfg3
1 files changed, 2 insertions, 1 deletions
diff --git a/ansible.cfg b/ansible.cfg
index 91c9fbf..3810727 100644
--- a/ansible.cfg
+++ b/ansible.cfg
@@ -85,22 +85,23 @@ remote_port = 22
# The resulting string is passed through strftime(3) so it may contain any
# time-formatting specifiers.
#
# Example: ansible_managed = DONT TOUCH {file}: call {uid} at {host} for changes
ansible_managed = Ansible Managed: modified on %Y-%m-%d %H:%M:%S by {uid}@{host}
# additional plugin paths for non-core plugins
action_plugins = ./lib/action_plugins
callback_plugins = ./lib/callback_plugins
connection_plugins = ./lib/connection_plugins
lookup_plugins = ./lib/lookup_plugins
vars_plugins = ./lib/vars_plugins
[ssh_connection]
# if uncommented, sets the ansible ssh arguments to the following. Leaving off ControlPersist
# will result in poor performance, so use transport=paramiko on older platforms rather than
# removing it
-control_path = /tmp/ansible-ssh-%%C
+control_path = /run/shm/ansible-ssh-%%C
+ssh_args = -oHashKnownHosts=no -oUserKnownHostsFile=./certs/ssh_known_hosts -oStrictHostKeyChecking=yes -oControlMaster=auto -oControlPersist=60s
pipelining = True