Add check for arlUpdateInterval var. fallback to 24h

This commit is contained in:
hockeygoalie35 2024-02-11 14:11:33 -05:00
parent 4121d3bea2
commit d68088d382

View file

@ -1,11 +1,22 @@
#!/usr/bin/with-contenv bash
scriptVersion="0.1"
### Default values
scriptVersion="1.1"
scriptName="ARLChecker"
sleepInterval='24h'
### Import Settings
source /config/extended.conf
echo Starting ARL Token Check...
python /custom-services.d/python/ARLChecker.py -c
echo ARL Token Check Complete. Sleeping for 24hrs...
sleep "$arlUpdateInterval"
python /custom-services.d/python/ARLChecker.py -c # run py script
# If variable doesn't exist, or not set by user in extended.conf, fallback to 24h
# See issue #189
if [[ -v arlUpdateInterval ]] && [ "$arlUpdateInterval" != "" ];then
echo 'conf'
sleepInterval="$arlUpdateInterval"
else
echo 'default'
fi
echo ARL Token Check Complete. Sleeping for ${sleepInterval}.
sleep ${sleepInterval}