From 29b0c846f1bf7e866622805aca16ee330090dce1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=A9bastien=20Han?= Date: Tue, 16 May 2017 14:39:03 +0200 Subject: [PATCH] ansible: fix control path line MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit If the comment is put after the line then it is interpreted so we need to move it before and have a dedicated line. Signed-off-by: Sébastien Han (cherry picked from commit 9f2c21972debca9e0dc5bcc19bc5fce0f5c4c471) Signed-off-by: Guillaume Abrioux --- ansible.cfg | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ansible.cfg b/ansible.cfg index b989d6acb..94e7d5275 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -4,3 +4,7 @@ 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] +# see: https://github.com/ansible/ansible/issues/11536 +control_path = %(directory)s/%%h-%%r -- 2.47.3