Advertisement
Guest User

Untitled

a guest
Jul 29th, 2023
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. # subvolume to snapshot
  2. SUBVOLUME="/home"
  3.  
  4. # filesystem type
  5. FSTYPE="btrfs"
  6.  
  7.  
  8. # btrfs qgroup for space aware cleanup algorithms
  9. QGROUP=""
  10.  
  11.  
  12. # fraction or absolute size of the filesystems space the snapshots may use
  13. SPACE_LIMIT="0.5"
  14.  
  15. # fraction or absolute size of the filesystems space that should be free
  16. FREE_LIMIT="0.2"
  17.  
  18.  
  19. # users and groups allowed to work with config
  20. ALLOW_USERS=""
  21. ALLOW_GROUPS="wheel"
  22.  
  23. # sync users and groups from ALLOW_USERS and ALLOW_GROUPS to .snapshots
  24. # directory
  25. SYNC_ACL="no"
  26.  
  27.  
  28. # start comparing pre- and post-snapshot in background after creating
  29. # post-snapshot
  30. BACKGROUND_COMPARISON="yes"
  31.  
  32.  
  33. # run daily number cleanup
  34. NUMBER_CLEANUP="yes"
  35.  
  36. # limit for number cleanup
  37. NUMBER_MIN_AGE="1800"
  38. NUMBER_LIMIT="50"
  39. NUMBER_LIMIT_IMPORTANT="10"
  40.  
  41.  
  42. # create hourly snapshots
  43. TIMELINE_CREATE="yes"
  44.  
  45. # cleanup hourly snapshots after some time
  46. TIMELINE_CLEANUP="yes"
  47.  
  48. # limits for timeline cleanup
  49. TIMELINE_MIN_AGE="1800"
  50. TIMELINE_LIMIT_HOURLY="10"
  51. TIMELINE_LIMIT_DAILY="10"
  52. TIMELINE_LIMIT_WEEKLY="0"
  53. TIMELINE_LIMIT_MONTHLY="10"
  54. TIMELINE_LIMIT_YEARLY="10"
  55.  
  56.  
  57. # cleanup empty pre-post-pairs
  58. EMPTY_PRE_POST_CLEANUP="yes"
  59.  
  60. # limits for empty pre-post-pair cleanup
  61. EMPTY_PRE_POST_MIN_AGE="1800"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement