From 9dddfa65c67d6bbba42649615cf4f4a6b073e59d Mon Sep 17 00:00:00 2001 From: Salt Date: Tue, 15 Feb 2022 13:59:30 -0600 Subject: [PATCH] Adding some debugging info to the home pipeline --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3f4036a..9f154e5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -64,6 +64,6 @@ Play_Against_Home: stage: play retry: 1 script: - - ansible-playbook -l tags_home site.yml --ssh-common-args="$SSH_BASTION_ARGS" --vault-password-file /vaultpw || error="$?" + - ansible-playbook -vvv -l tags_home site.yml --ssh-common-args="$SSH_BASTION_ARGS" --vault-password-file /vaultpw || error="$?" - if [ "$error" -eq 4 ]; then echo "Some hosts were unreachable; masking error"; unset error; fi - if [ -n "$error" ]; then echo "Return code $error"; false; fi