Add exclude line from stack overflow
This commit is contained in:
parent
8143790b87
commit
84e407e1d9
3 changed files with 4 additions and 4 deletions
|
@ -33,4 +33,4 @@ fileignoreconfig:
|
|||
ignore_detectors:
|
||||
- filename
|
||||
- filename: rsync_backup.sh
|
||||
checksum: 7a1de4a184109ca046dc5aa691d352d40451fc413b997746396faab35158b734
|
||||
checksum: b88ac0e625674d23d35feb26ce09c7a13a382aeffd046a99f28aca56c046775a
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
|
||||
# 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 --exclude="$RSYNC_EXCLUDES" "$RSYNC_BACKUP_SRC" "$RSYNC_BACKUP_DEST"
|
||||
rsync -a --delete --quiet "${RSYNC_EXCLUDES[@]/#/--exclude=}" "$RSYNC_BACKUP_SRC" "$RSYNC_BACKUP_DEST"
|
||||
|
|
|
@ -10,7 +10,7 @@ export RSYNC_BACKUP_SRC=/home
|
|||
|
||||
export RSYNC_BACKUP_DEST=/path/to/backup/destination
|
||||
|
||||
export RSYNC_EXCLUDES='{"/path/*","/other/path/*"}'
|
||||
export RSYNC_EXCLUDES=("pattern","other_pattern")
|
||||
|
||||
export BORG_REPO='user@ho.st'
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue