mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-03 17:55:21 +03:00
9 lines
149 B
Bash
Executable File
9 lines
149 B
Bash
Executable File
#!/bin/bash
|
|
# shellcheck shell=bash
|
|
# Start the fake Frigate service
|
|
|
|
while true; do
|
|
echo "The fake Frigate service is running..."
|
|
sleep 5s
|
|
done
|