From 9694afa91a1d2f683d05f5b91515454681020fee Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Thu, 11 Oct 2018 11:09:09 +0100 Subject: [PATCH] MNAIO: Use debug stdout callback by default To aid in understanding the output of failed tasks more easily, we enable the debug stdout callback plugin by default. We prefer this to using the yaml stdout callback because it more clearly outputs the stdout/stderr output. Change-Id: If5f6a4e5d7138eaee8ab4a1b1bdde3009e5f649e --- multi-node-aio/ansible-env.rc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/multi-node-aio/ansible-env.rc b/multi-node-aio/ansible-env.rc index 830f43f7..0b5e369a 100644 --- a/multi-node-aio/ansible-env.rc +++ b/multi-node-aio/ansible-env.rc @@ -1,3 +1,5 @@ +export ANSIBLE_STDOUT_CALLBACK="${ANSIBLE_STDOUT_CALLBACK:-debug}" + export ANSIBLE_GATHERING="${ANSIBLE_GATHERING:-smart}" export ANSIBLE_GATHER_SUBSET="${ANSIBLE_GATHER_SUBSET:-network,hardware,virtual}"