From 2b1354ce917fcd222ffea457cb5cffbb1521d4c4 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Wed, 7 Sep 2016 10:37:25 +0300 Subject: [PATCH] ansible.cfg: Fix SSH pipelining config The docs aren't very clear on this to be honest, but this option needs to be under a [ssh_connection] section. See: http://docs.ansible.com/ansible/intro_configuration.html#pipelining See: https://review.openstack.org/#/c/331499/ --- ansible.cfg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ansible.cfg b/ansible.cfg index 1172958..4f10206 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -1,3 +1,5 @@ [defaults] -pipelining=True retry_files_enabled=False + +[ssh_connection] +pipelining=True