commit
653ecca5eb
1 changed files with 17 additions and 4 deletions
|
@ -1,11 +1,24 @@
|
||||||
#!/usr/bin/with-contenv bash
|
#!/usr/bin/with-contenv bash
|
||||||
scriptVersion="0.1"
|
### Default values
|
||||||
|
scriptVersion="1.1"
|
||||||
scriptName="ARLChecker"
|
scriptName="ARLChecker"
|
||||||
|
sleepInterval='24h'
|
||||||
### Import Settings
|
### Import Settings
|
||||||
source /config/extended.conf
|
source /config/extended.conf
|
||||||
|
|
||||||
echo Starting ARL Token Check...
|
echo Starting ARL Token Check...
|
||||||
|
# run py script
|
||||||
python /custom-services.d/python/ARLChecker.py -c
|
python /custom-services.d/python/ARLChecker.py -c
|
||||||
echo ARL Token Check Complete. Sleeping for 24hrs...
|
|
||||||
sleep "$arlUpdateInterval"
|
# 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 'Found Interval in extended.conf'
|
||||||
|
sleepInterval="$arlUpdateInterval"
|
||||||
|
else
|
||||||
|
echo 'Interval Fallback'
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ARL Token Check Complete. Sleeping for ${sleepInterval}.
|
||||||
|
sleep ${sleepInterval}
|
Loading…
Reference in a new issue