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.

115 lines
1.6 KiB

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
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
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. func.create.policy = 'mfs'
  66. func.open.policy = 'ff'
  67. [[branches.tier.branch]]
  68. enabled = true
  69. name = 'branch0'
  70. type = 'scan'
  71. path = '*'
  72. order = 'name:asc' # | size
  73. [[branches.tier.branch]]
  74. enabled = true
  75. name = 'branch1'
  76. type = 'scan'
  77. path = '/mnt/branch1'
  78. mode = 'RW'
  79. [[branches.tier.branch]]
  80. enabled = true
  81. path = '/mnt/*'
  82. type = 'glob'
  83. mode = 'RW'
  84. if-not-mountpoint = 'fail' # 'fail' | 'deactivate' ?
  85. # TIER 1
  86. [[branches.tier]]
  87. [[branches.tier.branch]]
  88. enabled = true
  89. name = 'branch0'
  90. type = 'scan'
  91. path = 'foo'
  92. mode = 'RO'