Use an exclude file for rsync backup instead of array: cannot export array to ENV

This commit is contained in:
flyingscorpio@arch-desktop 2021-04-07 10:42:55 +02:00
parent 84e407e1d9
commit f1bfc94a75
5 changed files with 8 additions and 4 deletions

1
.gitignore vendored
View file

@ -5,3 +5,4 @@ __pycache__/
process_list.txt process_list.txt
secrets secrets
repos.yml repos.yml
rsync_backup_excludes

View file

@ -33,4 +33,4 @@ fileignoreconfig:
ignore_detectors: ignore_detectors:
- filename - filename
- filename: rsync_backup.sh - filename: rsync_backup.sh
checksum: b88ac0e625674d23d35feb26ce09c7a13a382aeffd046a99f28aca56c046775a checksum: d5168deb0ddc19195ac9231e1e4103d83c76c44bbcdf3eccb1bb5255c75361d8

View file

@ -437,6 +437,9 @@ rsync_backup:
- sudo ln -rsi dotfiles/systemd_timers/rsync_backup.service /etc/systemd/system/rsync_backup.service - sudo ln -rsi dotfiles/systemd_timers/rsync_backup.service /etc/systemd/system/rsync_backup.service
- run: - run:
- sudo systemctl enable rsync_backup.timer - sudo systemctl enable rsync_backup.timer
- symlink:
- ~/src/secrets/setup-cockpit/rsync_backup_excludes
- ~/setup-cockpit/rsync_backup_excludes
latex: latex:
- install: - install:

View file

@ -3,4 +3,6 @@
# Backup script that uses rsync, taken from https://wiki.archlinux.org/index.php/Rsync#As_a_backup_utility # Backup script that uses rsync, taken from https://wiki.archlinux.org/index.php/Rsync#As_a_backup_utility
# This script should be run daily with cron or a systemd timer. # This script should be run daily with cron or a systemd timer.
rsync -a --delete --quiet "${RSYNC_EXCLUDES[@]/#/--exclude=}" "$RSYNC_BACKUP_SRC" "$RSYNC_BACKUP_DEST" echo "$RSYNC_BACKUP_SRC"
echo "$RSYNC_BACKUP_DEST"
rsync --dry-run -va --delete --quiet --exclude-from=/home/*/setup-cockpit/rsync_backup_excludes "$RSYNC_BACKUP_SRC" "$RSYNC_BACKUP_DEST"

View file

@ -10,8 +10,6 @@ export RSYNC_BACKUP_SRC=/home
export RSYNC_BACKUP_DEST=/path/to/backup/destination export RSYNC_BACKUP_DEST=/path/to/backup/destination
export RSYNC_EXCLUDES=("pattern","other_pattern")
export BORG_REPO='user@ho.st' export BORG_REPO='user@ho.st'
export BORG_PASSPHRASE='passphrase' export BORG_PASSPHRASE='passphrase'