1 # Configuration for filesystem-backup
4 # If defined, this will override the output name of the backup
5 # files (instead of using the output of `hostname -s`)
6 # It will also form part of the log filename.
9 # Username and Group to own to output backup file
13 # Backup directory location e.g /backups
14 BACKUPDIR="/mnt/backup"
16 # File with a list of files to backup
17 INCLUDE_LIST='/etc/filesystem-backup/backup.include'
19 # File with a list of files to exclude form backup
20 EXCLUDE_LIST='/etc/filesystem-backup/backup.exclude'
23 # What would you like to be mailed to you?
24 # - log : send only log file
25 # - stdout : will simply output the log to the screen if run manually.
26 # - quiet : Only send logs if an error occurs to the MAILADDR.
29 # Email Address to send mail to? (user@domain.com)
30 MAILADDR="YOUR@EMAILADDRESS.COM"
32 # ============================================================
33 # === ADVANCED OPTIONS ===
34 #=============================================================
36 # Which day do you want weekly backups? (1 to 7 where 1 is Monday)
39 # Choose Compression type. (gzip or bzip2)
42 # Additionally keep a copy of the most recent backup in a seperate directory.
45 # Command to run before backups (uncomment to use)
46 #PREBACKUP="/etc/filesystem-backup/pre-backup.sh"
48 # Command run after backups (uncomment to use)
49 #POSTBACKUP="/etc/filesystem-backup/post-backup.sh"
53 HOSTNAME='/bin/hostname'