Browse Source

mergerfs.cpp

toml4
Antonio SJ Musumeci 10 months ago
parent
commit
9187a4b899
  1. 2
      config.toml
  2. 2
      src/mergerfs.cpp

2
config.toml

@ -116,6 +116,7 @@ func.open.policy = 'ff'
[branches]
min-free-space = 123
# TIER 0
[[branches.tier]]
[[branches.tier.branch]]
name = 'branch0'
@ -133,6 +134,7 @@ path-type = 'literal'
mode = 'RW'
if-not-mountpoint = 'fail' # 'fail' | 'deactivate' ?
# TIER 1
[[branches.tier]]
[[branches.tier.branch]]
name = 'branch0'

2
src/mergerfs.cpp

@ -302,7 +302,7 @@ int
main(int argc_,
char **argv_)
{
auto data = toml::parse("config.toml");
auto data = toml::parse<toml::preserve_comments>("config.toml");
std::cout << data["branches"] << '\n';
// Branches2 b(data["branches"]);

Loading…
Cancel
Save