From 271b8d82b129b0818cf767e7c8245976f6422b50 Mon Sep 17 00:00:00 2001 From: Sam Scholten Date: Fri, 12 Sep 2025 14:54:03 +1000 Subject: Release v1.0.0: Initial stable release - Basic multi-device backup functionality - Support for MEGA.nz remote storage - Bug fixes for Makefile and backup script --- restic_backup.sh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'restic_backup.sh') diff --git a/restic_backup.sh b/restic_backup.sh index 2ace329..831d066 100755 --- a/restic_backup.sh +++ b/restic_backup.sh @@ -36,6 +36,7 @@ restic backup \ --files-from "${CONFIG_DIR}/paths" \ --exclude-file "${CONFIG_DIR}/excludes" \ --password-file "${RESTIC_PASSWORD_FILE}" \ + --option rclone.timeout=20m \ --tag daily || { echo "Error: Restic backup failed." >&2 notify "Restic Backup ($(whoami)@$(hostname))" "Backup phase failed!" 8 @@ -51,6 +52,7 @@ restic forget \ --keep-weekly 4 \ --keep-monthly 6 \ --keep-yearly 6 \ + --option rclone.timeout=20m \ --prune || { echo "Error: Restic forget/prune failed." >&2 notify "Restic Backup ($(whoami)@$(hostname))" "Prune phase failed!" 8 -- cgit v1.2.3