20 lines
793 B
Bash
20 lines
793 B
Bash
#!/bin/sh
|
|
REPOSITORY=root@vdrpi:/mnt/hd/borg
|
|
|
|
# Backup all of /home and /var/www except a few
|
|
# excluded directories
|
|
borg create -v --stats \
|
|
$REPOSITORY::'{hostname}-{now:%Y-%m-%d}' \
|
|
/home \
|
|
/var/www \
|
|
--exclude '/home/*/.cache' \
|
|
--exclude /home/Ben/Music/Justin\ Bieber \
|
|
--exclude '*.pyc'
|
|
|
|
# Use the `prune` subcommand to maintain 7 daily, 4 weekly and 6 monthly
|
|
# archives of THIS machine. The '{hostname}-' prefix is very important to
|
|
# limit prune's operation to this machine's archives and not apply to
|
|
# other machine's archives also.
|
|
borg prune -v $REPOSITORY --prefix '{hostname}-' \
|
|
--keep-daily=7 --keep-weekly=4 --keep-monthly=6
|