| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- # List of files to be backed up
- FileSet {
- Name = "archivo all dirs"
- Include {
- Options {
- signature = MD5
- One FS = No # change into other filessytems
- }
- File = /home/dp/lto_backup_all_dirs/
- }
- }
- # List of files to be backed up
- FileSet {
- Name = "archivo hdd01"
- Include {
- Options {
- signature = MD5
- One FS = Yes
- }
- File = /home/dp/hdd01/
- }
- }
- #
- # Predefined standart Filesets
- #
- # This is the backup of the catalog
- FileSet {
- Name = "Catalog"
- Include {
- Options {
- signature = MD5
- }
- File = "/var/lib/bareos/bareos.sql" # database dump
- File = "/etc/bareos" # configuration
- }
- }
- # List of files to be backed up
- FileSet {
- Name = "archivo test"
- Include {
- Options {
- signature = MD5
- One FS = No # change into other filessytems
- }
- File = /home/dp/hdd17/lto_backup_test/
- }
- Exclude {
- File = /_md5_check
- File = /_full_list.csv
- }
- }
- FileSet {
- Name = "Linux All"
- Include {
- Options {
- Signature = MD5 # calculate md5 checksum per file
- One FS = No # change into other filessytems
- FS Type = ext2 # filesystems of given types will be backed up
- FS Type = ext3 # others will be ignored
- FS Type = ext4
- FS Type = xfs
- FS Type = zfs
- FS Type = reiserfs
- FS Type = jfs
- FS Type = btrfs
- }
- File = /
- }
- # Things that usually have to be excluded
- # You have to exclude /var/lib/bareos/storage
- # on your bareos server
- Exclude {
- File = /var/lib/bareos
- File = /var/lib/bareos/storage
- File = /proc
- File = /tmp
- File = /.journal
- File = /.fsck
- }
- }
- # fileset just to backup some files for selftest
- FileSet {
- Name = "SelfTest"
- Include {
- Options {
- Signature = MD5 # calculate md5 checksum per file
- }
- File = "/usr/sbin"
- }
- }
|