updated on Mon Jan 23 00:00:36 UTC 2012
[aur-mirror.git] / filesystem-backup / options.conf
blob9b49efd1ace3edef09e3383dde2d6488c4c5746c
1 # Configuration for filesystem-backup
2 FSBU_OPT_VER='0.5.2'
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.
7 BACKUP_NAME=''
9 # Username and Group to own to output backup file
10 USERNAME=root
11 GROUP=backup
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'
22 # Mail setup
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.
27 MAILCONTENT="stdout"
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)
37 DOWEEKLY=1
39 # Choose Compression type. (gzip or bzip2)
40 COMP=bzip2
42 # Additionally keep a copy of the most recent backup in a seperate directory.
43 LATEST=yes
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"
51 # Binary Paths
52 DATE='/bin/date'
53 HOSTNAME='/bin/hostname'
54 TAR='/bin/tar'
55 MKDIR='/bin/mkdir'
56 LN='/bin/ln'
57 RM='/bin/rm'
58 CHOWN='/bin/chown'
59 CHMOD='/bin/chmod'
60 FIND='/usr/bin/find'
61 TOUCH='/bin/touch'