Files
shell_sequencer/seqs/backup.cfg.example
2019-12-31 00:16:12 +01:00

25 lines
458 B
Bash

#!/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"\
)