From eded676575e6ef6150235b71d34ec4612f1a7bfb Mon Sep 17 00:00:00 2001 From: Sam Scholten Date: Wed, 22 Oct 2025 14:12:20 +1000 Subject: Release v1.1.0: Critical multi-device fixes for small VPS instances - Fix memory swap configuration (allow 1G swap) - Add prune coordination (2-4 AM window with jitter) - Add lock retry settings for robustness - Increase rclone bandwidth to 2M - Memory limits increased to 512M --- systemd/restic-backup.service | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'systemd/restic-backup.service') diff --git a/systemd/restic-backup.service b/systemd/restic-backup.service index 315ce0e..0e2e411 100644 --- a/systemd/restic-backup.service +++ b/systemd/restic-backup.service @@ -8,9 +8,10 @@ Type=oneshot # ExecStart path will be replaced by setup.sh during installation ExecStart=/path/to/be/replaced/restic_backup.sh # Environment variable will be set by setup.sh based on scope -# Memory limits to prevent OOM on VPS -MemoryMax=500M -MemorySwapMax=500M +Environment="HOME=/root" +# Memory limits to prevent OOM on VPS (allow swap for prune operations) +MemoryMax=512M +MemorySwapMax=1G [Install] WantedBy=timers.target -- cgit v1.2.3