From 0e931d2bce1030fcec9121a8dba70009cff83403 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=A9bastien=20Han?= Date: Thu, 11 May 2017 08:57:53 +0200 Subject: [PATCH] ansible: shorten default control_path MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- ansible.cfg | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.39.5