summaryrefslogtreecommitdiffstats
path: root/ansible.cfg
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2014-07-06 19:55:58 +0200
committerGuilhem Moulin <guilhem@fripost.org>2015-06-07 02:52:32 +0200
commit1e68d980a0587bb1afea3685d0a46fce86135cb9 (patch)
tree64ef0d52ec5142058beab3ce5728d7cfbdd9f1a8 /ansible.cfg
parentf877db8c189fc0a0c43aa5df9303ad34cceb774e (diff)
Enable zero-copy updates to the LDAP directory.
Diffstat (limited to 'ansible.cfg')
-rw-r--r--ansible.cfg10
1 files changed, 5 insertions, 5 deletions
diff --git a/ansible.cfg b/ansible.cfg
index 10b8f7f..cfa03e5 100644
--- a/ansible.cfg
+++ b/ansible.cfg
@@ -73,38 +73,38 @@ remote_port = 22
# if "user:" is not set in a playbook. If not set, use the current Unix user
# as the default
#remote_user = root
# if set, always use this private key file for authentication, same as if passing
# --private-key to ansible or ansible-playbook
#private_key_file=/path/to/file
# format of string $ansible_managed available within Jinja2 templates, replacing
# {file}, {host} and {uid} with template filename, host and owner respectively.
# 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 = /usr/share/ansible_plugins/action_plugins
-callback_plugins = /usr/share/ansible_plugins/callback_plugins
-connection_plugins = /usr/share/ansible_plugins/connection_plugins
-lookup_plugins = /usr/share/ansible_plugins/lookup_plugins
-vars_plugins = /usr/share/ansible_plugins/vars_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
ssh_args = -F ../virtualenv/.ssh/config
-o ControlMaster=auto
-o ControlPersist=60s
-o ControlPath=/tmp/ansible-ssh-%h-%p-%r
pipelining = True