mirror of
https://github.com/mag37/dockcheck.git
synced 2026-02-14 15:28:22 +01:00
23 lines
716 B
Bash
23 lines
716 B
Bash
|
|
### DISCLAIMER: This is a third party addition to dockcheck - best effort testing.
|
||
|
|
NOTIFY_FILE_VERSION="v0.1"
|
||
|
|
#
|
||
|
|
# Leave (or place) this file in the "notify_templates" subdirectory within the same directory as the main dockcheck.sh script.
|
||
|
|
# If you instead wish make your own modifications, make a copy in the same directory as the main dockcheck.sh script.
|
||
|
|
|
||
|
|
trigger_file_notification() {
|
||
|
|
if [[ -n "$1" ]]; then
|
||
|
|
file_channel="$1"
|
||
|
|
UpperChannel=$(tr '[:lower:]' '[:upper:]' <<< "$file_channel")
|
||
|
|
else
|
||
|
|
file_channel="file"
|
||
|
|
UpperChannel="FILE"
|
||
|
|
fi
|
||
|
|
|
||
|
|
FilePathVar="${UpperChannel}_PATH"
|
||
|
|
|
||
|
|
NotifyFile="${!FilePathVar:=${ScriptWorkDir}/updates_available.txt}"
|
||
|
|
|
||
|
|
echo "${MessageBody}" > ${NotifyFile}
|
||
|
|
|
||
|
|
}
|