v1.0.2 - make configurable
This commit is contained in:
parent
7f21b59aed
commit
e9e047bf78
1 changed files with 6 additions and 5 deletions
|
@ -1,17 +1,18 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
scriptVersion="1.0.1"
|
scriptVersion="1.0.2"
|
||||||
notfidedBy="Sonarr"
|
notfidedBy="Sonarr"
|
||||||
arrRootFolderPath="$(dirname "$sonarr_series_path")"
|
arrRootFolderPath="$(dirname "$sonarr_series_path")"
|
||||||
arrFolderPath="$sonarr_series_path"
|
arrFolderPath="$sonarr_series_path"
|
||||||
arrEventType="$sonarr_eventtype"
|
arrEventType="$sonarr_eventtype"
|
||||||
extrasPath="$1"
|
extrasPath="$1"
|
||||||
|
scriptName="PlexNotify"
|
||||||
|
|
||||||
# Debugging Settings
|
#### Import Settings
|
||||||
#enableExtras=false
|
source /config/extended.conf
|
||||||
|
|
||||||
log () {
|
log () {
|
||||||
m_time=`date "+%F %T"`
|
m_time=`date "+%F %T"`
|
||||||
echo $m_time" :: PlexNotify :: $scriptVersion :: "$1
|
echo $m_time" :: $scriptName :: $scriptVersion :: "$1
|
||||||
}
|
}
|
||||||
|
|
||||||
# auto-clean up log file to reduce space usage
|
# auto-clean up log file to reduce space usage
|
||||||
|
|
Loading…
Reference in a new issue