HomeLab/backup.sh
griffix 99435250bb
rsync all the things - part 2
better docker stop and more rsyncing
2025-08-08 09:41:25 +02:00

9 lines
313 B
Bash

#!/bin/sh
DestDir="/mnt/data/backups/arch-griffix/griffix/"
rsync -avuz --exclude ".local/share/Steam" --exclude "Games" --exclude "Téléchargements" /home/griffix/ $DestDir
rsync -avuz /mnt/pi5data/backups/pi5 /mnt/data/backups/pi5
rsync -avuz /mnt/pi5data/backups/immich /mnt/data/backups/immich
exit $?