Integrate restic backup system
This commit is contained in:
parent
c38bda8dfd
commit
a6e4beefb3
6 changed files with 84 additions and 2 deletions
12
roles/lander/files/lander.backup.sh
Normal file
12
roles/lander/files/lander.backup.sh
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
data_dir='/mnt/data1/lander'
|
||||
snapshot_dir="${data_dir}.snapshot"
|
||||
|
||||
# Read-only snapshot for atomic backup
|
||||
btrfs subvolume snapshot -r "$data_dir" "$snapshot_dir" || exit $?
|
||||
|
||||
restic backup "$snapshot_dir"
|
||||
|
||||
# Always remove snapshot subvolume, even if restic fails
|
||||
btrfs subvolume delete "$snapshot_dir"
|
||||
Loading…
Add table
Add a link
Reference in a new issue