summaryrefslogtreecommitdiff
path: root/restic_backup.sh
blob: e5c146e262b0aa864321961e9b9f907b83fc1214 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#!/bin/bash
set -euo pipefail

echo "--- Initializing Restic Backup Script ---"

# Source environment variables if the file exists
# This script expects RESTIC_ENV_FILE to be set in the environment
# The environment file includes rclone throttling settings to prevent timeouts
# shellcheck source=/dev/null
if [ -f "$RESTIC_ENV_FILE" ]; then
	source "$RESTIC_ENV_FILE"
	echo "Environment variables loaded from $RESTIC_ENV_FILE"
else
	echo "Error: RESTIC_ENV_FILE not found. Please run setup.sh first." >&2
	exit 1
fi

# Source common functions
# shellcheck source=/dev/null
source "$(dirname "$0")/common.sh"

# --- Pre-warm rclone connection ---
pre_warm_connection "Restic Backup"

# --- Exit Trap ---
# This will call notify with the script's final exit code upon termination.
trap 'notify "Restic Backup ($(whoami)@$(hostname))" "Restic backup script finished with exit code $?" $?' EXIT

# --- Main Backup Logic ---
echo "--- Starting Restic Backup at $(date) ---"

# Perform the Restic backup
echo "Starting Restic backup to repository: $RESTIC_REPOSITORY"
restic backup \
	--repo "${RESTIC_REPOSITORY}" \
	--files-from "${CONFIG_DIR}/paths" \
	--exclude-file "${CONFIG_DIR}/excludes" \
	--password-file "${RESTIC_PASSWORD_FILE}" \
	--option rclone.timeout=20m \
	--lock-retry-after 5m \
	--lock-stale-timeout 24h \
	--tag daily || {
	echo "Error: Restic backup failed." >&2
	notify "Restic Backup ($(whoami)@$(hostname))" "Backup phase failed!" 8
	exit 1
}

<<<<<<< HEAD
# Prune old snapshots
echo "Applying Restic retention policy and pruning old snapshots..."
restic forget \
	--repo "${RESTIC_REPOSITORY}" \
	--password-file "${RESTIC_PASSWORD_FILE}" \
	--keep-daily 7 \
	--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
	exit 1
}
=======
# Prune old snapshots - only on specific hours to avoid conflicts
HOUR=$(date +%H)
# Only prune between 2-4 AM to reduce multi-device conflicts
if [ $HOUR -ge 2 ] && [ $HOUR -lt 4 ]; then
	# Add random delay to stagger multiple devices
	sleep $(shuf -i 0-1800 -n 1)  # 0-30 minutes random delay
	echo "Applying Restic retention policy and pruning old snapshots..."
	restic forget \
		--repo "${RESTIC_REPOSITORY}" \
		--password-file "${RESTIC_PASSWORD_FILE}" \
		--option rclone.timeout=20m \
		--lock-retry-after 5m \
		--lock-stale-timeout 24h \
		--keep-daily 7 \
		--keep-weekly 4 \
		--keep-monthly 6 \
		--keep-yearly 6 \
		--prune || {
		echo "Warning: Restic forget/prune failed (another device might be pruning)." >&2
		notify "Restic Backup ($(whoami)@$(hostname))" "Prune phase failed!" 6
		# Don't exit on prune failure - backup was successful
	}
else
	echo "Skipping prune - only running between 2-4 AM to avoid multi-device conflicts"
fi
>>>>>>> 606b58c (Release v1.1.0: Critical multi-device fixes for small VPS instances)


echo "--- Restic Backup finished at $(date) ---"