* ADD: initial commit

This commit is contained in:
2024-01-20 11:52:52 +01:00
parent 95fc557025
commit 31054ebf7d
41 changed files with 1466 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#!/bin/sh
# shellcheck disable=SC1091
. /app/includes.sh
if [ ! -f "${HEALTHCHECK_FILE}" ]; then
printf 0 > "${HEALTHCHECK_FILE}"
fi
exit "$(cat "${HEALTHCHECK_FILE}")"