From 9f2c21972debca9e0dc5bcc19bc5fce0f5c4c471 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 --- ansible.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ansible.cfg b/ansible.cfg index 8b8868cc6..94e7d5275 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -6,4 +6,5 @@ roles_path = ./roles log_path = /var/log/ansible.log [ssh_connection] -control_path = %(directory)s/%%h-%%r # see: https://github.com/ansible/ansible/issues/11536 +# see: https://github.com/ansible/ansible/issues/11536 +control_path = %(directory)s/%%h-%%r -- 2.39.5