You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

129 lines
1.9 KiB

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
8 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
8 months ago
10 months ago
10 months ago
8 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
8 months ago
10 months ago
10 months ago
8 months ago
10 months ago
10 months ago
10 months ago
  1. # test file
  2. version = 0
  3. [filesystem]
  4. name = 'foo'
  5. mountpoint = '/tmp/test'
  6. threads = 0
  7. [fuse]
  8. posix-acl = false
  9. async-read = true
  10. message-size = 256
  11. [func]
  12. inode-calc = 'hybrid-hash'
  13. symlinkify = false
  14. symlinkify-timeout = 0
  15. xattr = 'passthrough'
  16. [func.access]
  17. policy = 'ff'
  18. [func.create]
  19. policy = 'ff'
  20. [func.getattr]
  21. policy = 'ff'
  22. follow-symlinks = 'never'
  23. [func.rmdir]
  24. policy = 'all'
  25. follow-symlinks = 'never'
  26. [func.link]
  27. policy = 'all' # 'preserve-paths' | 'create-paths' | 'per-branch'
  28. exdev = 'passthrough'
  29. [func.write]
  30. policy = 'null'
  31. move-on-enospc = 'mfs'
  32. [func.release]
  33. drop-cache = true
  34. [func.read]
  35. policy = 'null'
  36. [func.getxattr]
  37. security-capability = false
  38. [func.setxattr]
  39. security-capability = false
  40. [func.open]
  41. link-cow = true
  42. nfs-hack = 'off'
  43. [func.rename]
  44. policy = 'all'
  45. exdev = 'passthrough'
  46. [func.statfs]
  47. policy = 'base'
  48. ignore = 'none'
  49. [func.readdir]
  50. policy = 'posix'
  51. readdirplus = false
  52. [cache]
  53. files = 'off'
  54. statfs = 0
  55. attr-timeout = 0
  56. entry-timeout = 0
  57. negative-entry-timeout = 0
  58. writeback = false
  59. symlinks = false
  60. readdir = false
  61. [branches]
  62. min-free-space = 123
  63. # TIER 0
  64. [[branches.tier]]
  65. enabled = true
  66. [branches.tier.func.create]
  67. policy.default = 'mfs'
  68. [[branches.tier.func.create.policy.overrides]]
  69. dir = 'foo/bar'
  70. policy = 'lus'
  71. [[branches.tier.func.create.policy.overrides]]
  72. dir = 'blah'
  73. policy = 'xyz'
  74. [branches.tier.func.mkdir]
  75. policy.default = 'mfs'
  76. [[branches.tier.branch]]
  77. enabled = true
  78. name = 'branch0'
  79. type = 'glob'
  80. path = '*'
  81. order = 'name:asc' # | size
  82. mode = 'RW'
  83. [[branches.tier.branch]]
  84. enabled = true
  85. name = 'branch1'
  86. type = 'literal'
  87. path = '/mnt/branch1'
  88. mode = 'RW'
  89. exclude = ['*.png']
  90. [[branches.tier.branch]]
  91. enabled = true
  92. path = '/mnt/*'
  93. type = 'glob'
  94. mode = 'RW'
  95. if-not-mountpoint = 'fail' # 'fail' | 'deactivate' ?
  96. # TIER 1
  97. [[branches.tier]]
  98. [[branches.tier.branch]]
  99. enabled = false
  100. name = 'branch0'
  101. type = 'literal'
  102. path = '/mnt/*'
  103. mode = 'RO'