diff options
Diffstat (limited to 'ansible.cfg')
-rw-r--r-- | ansible.cfg | 10 |
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 |