Files
frigate/docker/rootfs/etc/services.d/go2rtc/finish
T

9 lines
221 B
Plaintext
Raw Normal View History

#!/command/with-contenv bash
# shellcheck shell=bash
2022-12-07 10:47:40 -03:00
# Take down the S6 supervision tree when the service fails, or restart it
# otherwise
if [[ "${1}" -ne 0 && "${1}" -ne 256 ]]; then
exec /run/s6/basedir/bin/halt
fi