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.
18 lines
343 B
18 lines
343 B
#!/usr/bin/with-contenv bash
|
|
if [ "$enableInvalidSeriesAutoCleaner" != "true" ]; then
|
|
sleep infinity
|
|
else
|
|
echo "Waiting for Sonarr to startup..."
|
|
sleep 20m
|
|
fi
|
|
|
|
echo "Starting Script...."
|
|
for (( ; ; )); do
|
|
let i++
|
|
bash /config/extended/scripts/InvalidSeriesAutoCleaner.bash
|
|
echo "Script sleeping for 12 hours..."
|
|
sleep 12h
|
|
done
|
|
|
|
exit $?
|