From 91df4bb5643c729f4af859fa60ad24e3d5d4ab9c Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Tue, 9 May 2017 11:20:25 +0100 Subject: [PATCH] Remove verbose Ansible logging (use ARA instead) Currently all role playbook executions use very verbose logging in order to help with diagnosing problems in their execution. ARA provides the most useful information available in the verbose log output, so instead of trawling very large logs we should instead use ARA's easier to navigate output. Change-Id: Idea3c01f27b72c73fdbaf5ff96c24421f4d3fa28 --- test-ansible-functional.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-ansible-functional.sh b/test-ansible-functional.sh index 651f5f4d..e4c11219 100755 --- a/test-ansible-functional.sh +++ b/test-ansible-functional.sh @@ -36,7 +36,7 @@ export ROLE_NAME=${ROLE_NAME:-''} export ANSIBLE_CALLBACK_WHITELIST="profile_tasks" export ANSIBLE_OVERRIDES=${ANSIBLE_OVERRIDES:-$WORKING_DIR/tests/$ROLE_NAME-overrides.yml} -export ANSIBLE_PARAMETERS=${ANSIBLE_PARAMETERS:-"-vvv"} +export ANSIBLE_PARAMETERS=${ANSIBLE_PARAMETERS:-""} export TEST_PLAYBOOK=${TEST_PLAYBOOK:-$WORKING_DIR/tests/test.yml} export TEST_CHECK_MODE=${TEST_CHECK_MODE:-false} export TEST_IDEMPOTENCE=${TEST_IDEMPOTENCE:-false}