🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay 2022-10-25 19:10:10 -04:00
parent 3cca4103f8
commit df6702dd93
No known key found for this signature in database
GPG Key ID: 4F765975C1F0EE5F
2 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ __certbot() {
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
__heath_check() { __heath_check() {
status=0 health="Good" 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" [ "$status" -eq 0 ] || health="Errors reported see docker logs --follow $CONTAINER_NAME"
echo "$(uname -s) $(uname -m) is running and the health is: $health" echo "$(uname -s) $(uname -m) is running and the health is: $health"
return ${status:-$?} return ${status:-$?}

View File

@ -5,10 +5,10 @@
# @@Author : Jason Hempstead # @@Author : Jason Hempstead
# @@Contact : jason@casjaysdev.com # @@Contact : jason@casjaysdev.com
# @@License : WTFPL # @@License : WTFPL
# @@ReadME : start-soft-serve.sh --help # @@ReadME : start-soft.sh --help
# @@Copyright : Copyright: (c) 2022 Jason Hempstead, Casjays Developments # @@Copyright : Copyright: (c) 2022 Jason Hempstead, Casjays Developments
# @@Created : Tuesday, Oct 25, 2022 17:48 EDT # @@Created : Tuesday, Oct 25, 2022 17:48 EDT
# @@File : start-soft-serve.sh # @@File : start-soft.sh
# @@Description : script to start soft-serve # @@Description : script to start soft-serve
# @@Changelog : New script # @@Changelog : New script
# @@TODO : Better documentation # @@TODO : Better documentation