From 82372465677228ee76e0937a1c6b1d306f37adb3 Mon Sep 17 00:00:00 2001 From: Salt Date: Tue, 15 Feb 2022 17:12:44 -0600 Subject: [PATCH] Remove the debug flags on the home play --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 18365be..38b9dfa 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -68,6 +68,6 @@ Play_Against_Home: stage: play retry: 1 script: - - ansible-playbook -vvv -l tags_home site.yml --ssh-common-args='-o ProxyCommand="ssh -W %h:%p -q ansible@bastion1.dallas.mgmt.desu.ltd"' --vault-password-file /vaultpw || error="$?" + - ansible-playbook -l tags_home site.yml --ssh-common-args='-o ProxyCommand="ssh -W %h:%p -q ansible@bastion1.dallas.mgmt.desu.ltd"' --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