Files
linux-scripts/restic/restic-lxc/restic-lxc-backup.sh
2024-03-29 03:29:16 -05:00

32 lines
732 B
Bash
Executable File

#!/bin/bash
export RESTIC_PASSWORD="8ung1e1!"
# backup /home/akanealw
export RESTIC_REPOSITORY="/mnt/resticbackups/home/akanealw"
restic unlock
restic backup /home/akanealw --no-cache -v
restic unlock
restic forget --keep-last 25 --prune
# backup /etc
export RESTIC_REPOSITORY="/mnt/resticbackups/etc"
restic unlock
restic backup /etc --no-cache -v
restic unlock
restic forget --keep-last 25 --prune
# backup /opt
export RESTIC_REPOSITORY="/mnt/resticbackups/opt"
restic unlock
restic backup /opt --no-cache -v
restic unlock
restic forget --keep-last 25 --prune
# backup /root
export RESTIC_REPOSITORY="/mnt/resticbackups/root"
restic unlock
restic backup /root --no-cache -v
restic unlock
restic forget --keep-last 25 --prune