diff --git a/config.toml b/config.toml index eba002d6..2154bdf9 100644 --- a/config.toml +++ b/config.toml @@ -89,7 +89,7 @@ func.open.policy = 'ff' [[branches.tier.branch]] enabled = true name = 'branch0' -type = 'scan' +type = 'glob' path = '*' order = 'name:asc' # | size [[branches.tier.branch]] @@ -110,6 +110,6 @@ if-not-mountpoint = 'fail' # 'fail' | 'deactivate' ? [[branches.tier.branch]] enabled = true name = 'branch0' -type = 'scan' -path = 'foo' +type = 'literal' +path = '/mnt/*' mode = 'RO' diff --git a/src/branch2.cpp b/src/branch2.cpp index 6dc1da20..b91c7987 100644 --- a/src/branch2.cpp +++ b/src/branch2.cpp @@ -33,7 +33,7 @@ Branch2::Branch2(toml::value const &v_) { enabled = v_.at("enabled").as_boolean(); mode = Mode::_from_string(toml::find(v_,"mode").c_str()); - min_free_space = 0; + min_free_space = toml::find(v_,"min-free-space"); path = toml::find(v_,"path"); int const flags = O_DIRECTORY | O_PATH | O_NOATIME;