You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
388 B
20 lines
388 B
#!/usr/bin/with-contenv bash
|
|
if [ "$enableExtras" != "true" ]; then
|
|
echo "MovieExtras disabled, enable by setting parameter: enableExtras=true"
|
|
sleep infinity
|
|
else
|
|
echo "Waiting for Radarr to startup..."
|
|
sleep 2m
|
|
fi
|
|
|
|
echo "Starting Script...."
|
|
for (( ; ; )); do
|
|
let i++
|
|
bash /config/extended/scripts/AutoExtras.bash
|
|
echo "Script sleeping for 24 hours..."
|
|
sleep 24h
|
|
done
|
|
|
|
|
|
exit $?
|