common_incexc 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #
  2. # Common options for all clients (Salt managed)
  3. #
  4. # If you add at least one 'include=' line, the server will override the
  5. # rest of the client options below, which define exactly what to backup.
  6. # Setting any of the other options here will then also take effect on the
  7. # client.
  8. include = /etc
  9. include = /root
  10. include = /usr/local
  11. include = /srv
  12. # Exclude various temporary file systems.
  13. exclude_fs = sysfs
  14. exclude_fs = tmpfs
  15. exclude_fs = proc
  16. exclude_fs = devfs
  17. exclude_fs = devpts
  18. # exclude_ext=vdi
  19. # exclude_regex=/\.cache/
  20. # Exclude files from compression by extension.
  21. exclude_comp = bz2
  22. exclude_comp = gz
  23. exclude_comp = xz
  24. # cross_filesystem=/some/path
  25. cross_all_filesystems=0
  26. # split_vss=1
  27. # strip_vss=0
  28. # When backing up, whether to enable O_NOATIME when opening files and
  29. # directories. The default is atime=0, which enables O_NOATIME.
  30. atime = 0
  31. # When enabled, this causes problems in the phase1 scan (such as an 'include'
  32. # being missing) to be treated as fatal errors. The default is 0.
  33. scan_problem_raises_error = 0