🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay
2022-10-25 19:10:10 -04:00
parent 3cca4103f8
commit df6702dd93
2 changed files with 3 additions and 3 deletions

View File

@@ -45,7 +45,7 @@ __certbot() {
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
__heath_check() {
status=0 health="Good"
start-soft-serve.sh healthcheck || status=$((status + 1))
start-soft.sh healthcheck || status=$((status + 1))
[ "$status" -eq 0 ] || health="Errors reported see docker logs --follow $CONTAINER_NAME"
echo "$(uname -s) $(uname -m) is running and the health is: $health"
return ${status:-$?}