From bba9b3eef7091667a90b131baa4e9b0aada8e834 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Mon, 22 Dec 2014 15:49:46 +0000 Subject: [PATCH] Don't bail out in run_all.sh for ansible errors It's possible for connectivity to a server or manifest application to break for indeterminate periods of time, so the playbooks should be run without errexit. Change-Id: Id4968de3ef8090faa8f97ae8bab29c282d595bbc --- run_all.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/run_all.sh b/run_all.sh index 3027c60cbd..4e8c3d549a 100755 --- a/run_all.sh +++ b/run_all.sh @@ -27,6 +27,11 @@ git fetch -a && git reset -q --hard @{u} # some times touch manifests/site.pp +# It's possible for connectivity to a server or manifest application to break +# for indeterminate periods of time, so the playbooks should be run without +# errexit +set +e + # First run the git/gerrit sequence, since it's important that they all work # together ansible-playbook /etc/ansible/remote_puppet_git.yaml >> /var/log/puppet_run_all.log 2>&1