mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-03 17:55:21 +03:00
11 lines
298 B
Plaintext
Executable File
11 lines
298 B
Plaintext
Executable File
#!/command/with-contenv bash
|
|
# shellcheck shell=bash
|
|
|
|
set -o errexit -o nounset -o pipefail
|
|
|
|
readonly exit_code_service="${1}"
|
|
readonly exit_code_signal="${2}"
|
|
readonly service="go2rtc"
|
|
|
|
echo "[INFO] The ${service} service exited with code ${exit_code_service} (by signal ${exit_code_signal})" >&2
|