From 4c7efb05c8fd1bd27ab378698a0611848625a4d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Mathieu?= Date: Wed, 11 Mar 2026 10:50:36 +0100 Subject: [PATCH] Add timestamped Pushover start/end on main --- scripts/agathe_backup.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/agathe_backup.sh b/scripts/agathe_backup.sh index b875782..070f7d4 100755 --- a/scripts/agathe_backup.sh +++ b/scripts/agathe_backup.sh @@ -84,6 +84,7 @@ CONSUME_EXT_REGEX='\.([Pp][Dd][Ff]|[Dd][Oo][Cc][Xx]?|[Xx][Ll][Ss][Xx]?|[Pp][Pp][ # Hilfsfunktionen # ----------------------------- log() { echo "[$(date +'%F %T')] $*"; } +ts_now() { date +'%F %T'; } send_pushover() { local message="$1" @@ -487,6 +488,8 @@ need_root check_deps acquire_lock +send_pushover "Backup START auf $(hostname) um $(ts_now)." + bringup_wg mount_cifs @@ -499,4 +502,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)."