From 42ea4d2cfd7f98379476d0473caf97dc60bcbb7e Mon Sep 17 00:00:00 2001 From: Alexander Block Date: Fri, 9 Dec 2016 11:04:42 +0100 Subject: [PATCH] Add comment about why ansible_ssh_pipelining is set to false in bootstrap-os --- cluster.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cluster.yml b/cluster.yml index 863f0669b..6f8e63505 100644 --- a/cluster.yml +++ b/cluster.yml @@ -3,6 +3,8 @@ any_errors_fatal: true gather_facts: false vars: + # Need to disable pipelining for bootstrap-os as some systems have requiretty in sudoers set, which makes pipelining + # fail. bootstrap-os fixes this on these systems, so in later plays it can be enabled. ansible_ssh_pipelining: false roles: - bootstrap-os