15 lines
164 B
Bash
15 lines
164 B
Bash
#!/usr/bin/with-contenv bashio
|
|
|
|
set +e
|
|
|
|
cd /config
|
|
|
|
while true; do
|
|
if [ -x go2rtc ]; then
|
|
./go2rtc
|
|
else
|
|
/app/go2rtc
|
|
fi
|
|
|
|
sleep 5
|
|
done |