New sequence to provide various backup options

Rsync included
This commit is contained in:
2019-12-31 00:16:12 +01:00
parent ac011b6564
commit dab84f4d67
2 changed files with 125 additions and 0 deletions

24
seqs/backup.cfg.example Normal file
View File

@@ -0,0 +1,24 @@
#!/bin/bash
# Backup sequence definitions template.
# Remove ".example" for customization.
# A running debian needs at least the following runtime directories created to start up successfully:
## dev
## proc
## sys
## run
# Exclude notation "directory/*" creates the directory but NOT its content
BACKUP_EXCLUDES=(\
"backup*"\
"/home/network/*"\
"/dev/*"\
"/proc/*"\
"/sys/*"\
"/tmp/*"\
"/run/*"\
"/mnt/*"\
"/media/*"\
"/lost+found"\
)