From 22e5675965da19e3a733161447c04f86431b5a4e Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Tue, 29 Aug 2017 13:25:59 +0100 Subject: [PATCH] Enable verbose logging when fetching roles via git-clone In order to troubleshoot why the periodic jobs are failing due to a missing opendaylight role (which only exists in master), verbose logging is implemented when executing the role fetch via git so that we can see zuul-cloner's detailed output. Change-Id: I8a27240914a9154f4c94c50c925906432532c2d0 (cherry picked from commit 3407125b5ada1c1649c568653a778e3a4a75b1f9) --- scripts/bootstrap-ansible.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/bootstrap-ansible.sh b/scripts/bootstrap-ansible.sh index 44a1efbe95..d9580589d4 100755 --- a/scripts/bootstrap-ansible.sh +++ b/scripts/bootstrap-ansible.sh @@ -268,7 +268,8 @@ if [ -f "${ANSIBLE_ROLE_FILE}" ]; then pushd tests ansible-playbook get-ansible-role-requirements.yml \ -i ${OSA_CLONE_DIR}/tests/test-inventory.ini \ - -e role_file="${ANSIBLE_ROLE_FILE}" + -e role_file="${ANSIBLE_ROLE_FILE}" \ + -vvv popd else echo "Please set the ANSIBLE_ROLE_FETCH_MODE to either of the following options ['galaxy', 'git-clone']"