We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76e347e commit a14cecdCopy full SHA for a14cecd
lidarr/ARLChecker
@@ -1,10 +1,18 @@
1
#!/usr/bin/with-contenv bash
2
### Default values
3
-scriptVersion="1.1"
+scriptVersion="1.2"
4
scriptName="ARLChecker"
5
sleepInterval='24h'
6
### Import Settings
7
source /config/extended.conf
8
+#### Import Functions
9
+source /config/extended/functions
10
+
11
+if [ "$dlClientSource" == "tidal" ]; then
12
+ log "Script is not enabled, enable by setting dlClientSource to \"deezer\" or \"both\" by modifying the \"/config/extended.conf\" config file..."
13
+ log "Sleeping (infinity)"
14
+ sleep infinity
15
+fi
16
17
echo Starting ARL Token Check...
18
# run py script
@@ -21,4 +29,4 @@ else
21
29
fi
22
30
23
31
echo ARL Token Check Complete. Sleeping for ${sleepInterval}.
24
-sleep ${sleepInterval}
32
+sleep ${sleepInterval}
0 commit comments