common_incexc 1003 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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 = /srv
  10. # Exclude various temporary file systems.
  11. exclude_fs = sysfs
  12. exclude_fs = tmpfs
  13. exclude_fs = proc
  14. exclude_fs = devfs
  15. exclude_fs = devpts
  16. # exclude_ext=vdi
  17. # exclude_regex=/\.cache/
  18. # Exclude files from compression by extension.
  19. exclude_comp = bz2
  20. exclude_comp = gz
  21. exclude_comp = xz
  22. # cross_filesystem=/some/path
  23. cross_all_filesystems=0
  24. # split_vss=1
  25. # strip_vss=0
  26. # When backing up, whether to enable O_NOATIME when opening files and
  27. # directories. The default is atime=0, which enables O_NOATIME.
  28. atime = 0
  29. # When enabled, this causes problems in the phase1 scan (such as an 'include'
  30. # being missing) to be treated as fatal errors. The default is 0.
  31. scan_problem_raises_error = 0