bugfix to allow script to run as intended via loop

pull/139/head
RandomNinjaAtk 2 years ago committed by GitHub
parent 011019b658
commit ca5e935447
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,13 +1,18 @@
#!/usr/bin/with-contenv bash
if [ "$enableAudioScript" = "true" ]; then
echo "Starting Audio.sh in 2 min..."
sleep 2m
bash /config/extended/scripts/Audio.sh
else
if [ "$enableAudioScript" != "true" ]; then
echo "Automatic Start Disabled, to enable set enableAudioScript=true"
echo "Manually run using this command:"
echo "bash /config/extended/scripts/Audio.sh"
sleep infinity
fi
exit $?
echo "Starting Audio.sh in 2 min..."
sleep 2m
for (( ; ; )); do
let i++
bash /config/extended/scripts/Audio.sh
echo "Audio.sh script sleeping for $scriptInterval..."
sleep $scriptInterval
done
exit

Loading…
Cancel
Save