homelab/roles/calathea/files/calathea.data.backup.sh

13 lines
338 B
Bash
Raw Normal View History

2025-01-12 22:19:37 +00:00
#!/usr/bin/env bash
data_dir='/mnt/data1/calathea'
snapshot_dir="${data_dir}.snapshot"
# Read-only snapshot for atomic backup
btrfs subvolume snapshot -r "$data_dir" "$snapshot_dir" || exit $?
/usr/local/bin/restic backup "$snapshot_dir"
# Always remove snapshot subvolume, even if restic fails
btrfs subvolume delete "$snapshot_dir"