mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01: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
|