Add success-based exit code

This commit is contained in:
Alex Povel 2021-03-29 16:58:19 +02:00
parent 571afc1b5d
commit 491fdce44f
1 changed files with 4 additions and 0 deletions

View File

@ -84,8 +84,10 @@ EOF
outagenb=$(find ${tmp}/ko -mindepth 1 | grep -c 'status$')
if [ ${outagenb} -ne 0 ]; then
echo "<ul><li class='panel failed-bg'>${outagenb} Outage(s)</li></ul>"
exitcode=1
else
echo "<ul><li class='panel success-bg'>All Systems Operational</li></ul>"
exitcode=0
fi
cat << EOF
<h1>Services</h1>
@ -120,3 +122,5 @@ cat <<EOF
EOF
rm -r "${tmp}" 2>/dev/null
# Allow the script execution itself to signal success, e.g. for use in healthchecks
exit ${exitcode}