HomeLab/backup.sh
griffix 8e3c5efacb
rsync all the things
improvements on rsync scripts
2025-08-08 09:02:38 +02:00

8 lines
247 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
exit $?