From: Sébastien Han Date: Thu, 11 May 2017 06:57:53 +0000 (+0200) Subject: ansible: shorten default control_path X-Git-Tag: v2.3.0rc1~15^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=0e931d2bce1030fcec9121a8dba70009cff83403;p=ceph-ansible.git ansible: shorten default control_path Default ansible control_path option is too long, so we shorten it by changing the ansible.cfg file. For more info see: https://github.com/ansible/ansible/issues/11536 Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1447569 Signed-off-by: Sébastien Han --- diff --git a/ansible.cfg b/ansible.cfg index b989d6acb..8b8868cc6 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -4,3 +4,6 @@ action_plugins = plugins/actions roles_path = ./roles # Be sure the user running Ansible has permissions on the logfile log_path = /var/log/ansible.log + +[ssh_connection] +control_path = %(directory)s/%%h-%%r # see: https://github.com/ansible/ansible/issues/11536