From e9fe2227f3e8ba5d85cfd81da290e1ab56a33628 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Thu, 7 Mar 2024 15:17:32 +0100 Subject: [PATCH] More logging for backup-home --- home/services/backup-home.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/home/services/backup-home.nix b/home/services/backup-home.nix index 0d39a3d..0555f84 100644 --- a/home/services/backup-home.nix +++ b/home/services/backup-home.nix @@ -3,6 +3,7 @@ let # Backup home script backup-home = pkgs.writeShellScriptBin "backup-home.sh" '' + echo "========== BACKUP HOME STARTING ==========" export RESTIC_PASSWORD="gunter.home.2rjus.net" export RESTIC_REPOSITORY="rest:http://10.69.12.52:8000/gunter.home.2rjus.net" GOTIFY_TOKEN=$(<"$XDG_RUNTIME_DIR/gotify_backup_home.txt") @@ -11,8 +12,6 @@ let ${pkgs.libnotify}/bin/notify-send -u critical "Backup issue" "No Gotify token found" fi - echo "GOTIFY_TOKEN=$GOTIFY_TOKEN" - # Send start notification ${pkgs.libnotify}/bin/notify-send -e -t 3000 "Backup started" "Backup of /home/torjus started" retval=$? @@ -21,6 +20,7 @@ let fi # Do the backup + echo "========== BACKUP TASK STARTING ==========" SECONDS=0 ${pkgs.restic}/bin/restic backup /home/torjus \ --exclude '/home/torjus/.cache' \ @@ -38,11 +38,14 @@ let -F "message=Please check status of backup-home service" fi fi + echo "========== BACKUP TASK COMPLETE ==========" # Remove old snapshots and prune + echo "========== PRUNE TASK STARTING ==========" ${pkgs.restic}/bin/restic forget -d 7 -w 4 -m 6 --keep-within 1d --prune - + echo "========== PRUNE TASK COMPLETE ==========" # Gather statistics + echo "========== STATS TASK STARTING ==========" stats=$(${pkgs.restic}/bin/restic stats --json) stats_raw=$(${pkgs.restic}/bin/restic stats --mode=raw-data --json) @@ -54,6 +57,7 @@ let | ${pkgs.coreutils}/bin/numfmt --to=iec) total_snapshots=$(${pkgs.jq}/bin/jq -r '.snapshots_count' <<< $stats) message="$total_files files\n$total_snapshots snapshots\n$raw_size ($total_size)" + echo "========== STATS TASK COMPLETE ==========" # Send completion notification ${pkgs.libnotify}/bin/notify-send -i checkmark -e -t 10000 \ @@ -63,6 +67,7 @@ let echo "Failed to send notification" exit $retval fi + echo "========== BACKUP HOME COMPLETE ==========" ''; in {