Use an exclude file for rsync backup instead of array: cannot export array to ENV
This commit is contained in:
parent
84e407e1d9
commit
f1bfc94a75
5 changed files with 8 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -5,3 +5,4 @@ __pycache__/
|
|||
process_list.txt
|
||||
secrets
|
||||
repos.yml
|
||||
rsync_backup_excludes
|
||||
|
|
|
@ -33,4 +33,4 @@ fileignoreconfig:
|
|||
ignore_detectors:
|
||||
- filename
|
||||
- filename: rsync_backup.sh
|
||||
checksum: b88ac0e625674d23d35feb26ce09c7a13a382aeffd046a99f28aca56c046775a
|
||||
checksum: d5168deb0ddc19195ac9231e1e4103d83c76c44bbcdf3eccb1bb5255c75361d8
|
||||
|
|
|
@ -437,6 +437,9 @@ rsync_backup:
|
|||
- sudo ln -rsi dotfiles/systemd_timers/rsync_backup.service /etc/systemd/system/rsync_backup.service
|
||||
- run:
|
||||
- sudo systemctl enable rsync_backup.timer
|
||||
- symlink:
|
||||
- ~/src/secrets/setup-cockpit/rsync_backup_excludes
|
||||
- ~/setup-cockpit/rsync_backup_excludes
|
||||
|
||||
latex:
|
||||
- install:
|
||||
|
|
|
@ -3,4 +3,6 @@
|
|||
# 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.
|
||||
|
||||
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"
|
||||
|
|
|
@ -10,8 +10,6 @@ export RSYNC_BACKUP_SRC=/home
|
|||
|
||||
export RSYNC_BACKUP_DEST=/path/to/backup/destination
|
||||
|
||||
export RSYNC_EXCLUDES=("pattern","other_pattern")
|
||||
|
||||
export BORG_REPO='user@ho.st'
|
||||
|
||||
export BORG_PASSPHRASE='passphrase'
|
||||
|
|
Loading…
Add table
Reference in a new issue