mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-06 13:34:13 +03:00
9 lines
166 B
Plaintext
9 lines
166 B
Plaintext
|
|
#!/command/with-contenv bash
|
||
|
|
# shellcheck shell=bash
|
||
|
|
# Start the fake Frigate service
|
||
|
|
|
||
|
|
while true; do
|
||
|
|
echo "The fake Frigate service is running..."
|
||
|
|
sleep 5s
|
||
|
|
done
|