🔨 Migrate old-style base scripts s6-rc (#30)

This commit is contained in:
Franck Nijhof 2022-12-15 09:04:58 +01:00 committed by GitHub
parent 3f7145a011
commit 3b310f9f01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 30 additions and 12 deletions

View file

@ -0,0 +1,27 @@
#!/command/with-contenv bashio
# shellcheck shell=bash
# ==============================================================================
# Home Assistant Community Add-on: Uptime Kuma
# Take down the S6 supervision tree when Uptime Kuma fails
# ==============================================================================
declare exit_code
readonly exit_code_container=$(</run/s6-linux-init-container-results/exitcode)
readonly exit_code_service="${1}"
readonly exit_code_signal="${2}"
readonly service="Uptime Kuma"
bashio::log.info \
"Service ${service} exited with code ${exit_code_service}" \
"(by signal ${exit_code_signal})"
if [[ "${exit_code_service}" -eq 256 ]]; then
if [[ "${exit_code_container}" -eq 0 ]]; then
echo $((128 + $exit_code_signal)) > /run/s6-linux-init-container-results/exitcode
fi
[[ "${exit_code_signal}" -eq 15 ]] && exec /run/s6/basedir/bin/halt
elif [[ "${exit_code_service}" -ne 0 ]]; then
if [[ "${exit_code_container}" -eq 0 ]]; then
echo "${exit_code_service}" > /run/s6-linux-init-container-results/exitcode
fi
exec /run/s6/basedir/bin/halt
fi

View file

@ -1,11 +1,12 @@
#!/command/with-contenv bashio
# shellcheck shell=bash
# ==============================================================================
# Home Assistant Community Add-on: Uptime Kuma
# Starts Uptime Kuma
# ==============================================================================
export NODE_PATH=/opt/node_modules
cd /opt/uptime-kuma || bashio::exit.nok "Could not change directory to Uptime Kume"
cd /opt/uptime-kuma || bashio::exit.nok "Could not change directory to Uptime Kuma"
bashio::log.info "Starting Uptime Kuma..."

View file

@ -0,0 +1 @@
longrun

View file

@ -1,11 +0,0 @@
#!/command/with-contenv bashio
# ==============================================================================
# Home Assistant Community Add-on: Uptime Kuma
# Take down the S6 supervision tree when Uptime Kuma fails
# ==============================================================================
if [[ "${1}" -ne 0 ]] && [[ "${1}" -ne 256 ]]; then
bashio::log.warning "Uptime Kuma crashed, halting add-on"
exec /run/s6/basedir/bin/halt
fi
bashio::log.info "Uptime Kuma stopped, restarting..."