Files
frigate/docker/main/fake_frigate_run
T

14 lines
271 B
Plaintext
Raw Normal View History

2022-12-07 10:47:40 -03:00
#!/command/with-contenv bash
# shellcheck shell=bash
# Start the fake Frigate service
set -o errexit -o nounset -o pipefail
# Tell S6-Overlay not to restart this service
s6-svc -O .
2022-12-07 10:47:40 -03:00
while true; do
echo "[INFO] The fake Frigate service is running..."
2022-12-07 10:47:40 -03:00
sleep 5s
done