Files
go2rtc/build/hassio/run.sh
T
2022-08-21 09:27:02 +03:00

13 lines
222 B
Bash

#!/usr/bin/with-contenv bashio
set +e
while true; do
if [ -x /config/go2rtc ]; then
/config/go2rtc -config /config/go2rtc.yaml
else
/app/go2rtc -config /config/go2rtc.yaml
fi
sleep 5
done