Add timestamped Pushover start/end on Tomedo branch

This commit is contained in:
René Mathieu
2026-03-11 10:59:44 +01:00
parent 7040f0c90b
commit 07ce794828

View File

@@ -93,6 +93,7 @@ TOMEDO_FILES_EXCLUDES="${TOMEDO_DEST_ROOT}/files.excludes"
# Hilfsfunktionen
# -----------------------------
log() { echo "[$(date +'%F %T')] $*"; }
ts_now() { date +'%F %T'; }
send_pushover() {
local message="$1"
@@ -537,6 +538,8 @@ need_root
check_deps
acquire_lock
send_pushover "Backup START auf $(hostname) um $(ts_now)."
bringup_wg
mount_cifs
@@ -550,4 +553,4 @@ borg_local_backup
rsync_borg_mirror_to_cifs
log "== Fertig. =="
send_pushover "Backup erfolgreich auf $(hostname) abgeschlossen."
send_pushover "Backup ENDE auf $(hostname) um $(ts_now)."