LinuxAll.conf 804 B

12345678910111213141516171819202122232425262728293031
  1. FileSet {
  2. Name = "LinuxAll"
  3. Description = "Backup all regular filesystems, determined by filesystem type."
  4. Include {
  5. Options {
  6. Signature = MD5 # calculate md5 checksum per file
  7. One FS = No # change into other filessytems
  8. FS Type = btrfs
  9. FS Type = ext2 # filesystems of given types will be backed up
  10. FS Type = ext3 # others will be ignored
  11. FS Type = ext4
  12. FS Type = reiserfs
  13. FS Type = jfs
  14. FS Type = xfs
  15. FS Type = zfs
  16. }
  17. File = /
  18. }
  19. # Things that usually have to be excluded
  20. # You have to exclude /var/lib/bareos/storage
  21. # on your bareos server
  22. Exclude {
  23. File = /var/lib/bareos
  24. File = /var/lib/bareos/storage
  25. File = /proc
  26. File = /tmp
  27. File = /var/tmp
  28. File = /.journal
  29. File = /.fsck
  30. }
  31. }