mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-22 13:54:21 +08:00
branch_tier.cpp
This commit is contained in:
parent
281c8eef63
commit
b1d725032e
|
@ -107,9 +107,10 @@ mode = 'RW'
|
|||
[[branches.tier.branch]]
|
||||
enabled = true
|
||||
name = 'branch1'
|
||||
type = 'scan'
|
||||
type = 'literal'
|
||||
path = '/mnt/branch1'
|
||||
mode = 'RW'
|
||||
exclude = ['*.png']
|
||||
[[branches.tier.branch]]
|
||||
enabled = true
|
||||
path = '/mnt/*'
|
||||
|
|
|
@ -75,16 +75,3 @@ BranchTier::BranchTier(toml::value const &v_)
|
|||
l::load_branch_scan(table,_branches);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
BranchTier::copy_enabled_rw(BranchTier &bt_) const
|
||||
{
|
||||
for(auto const &b : _branches)
|
||||
{
|
||||
if(b.enabled == false)
|
||||
continue;
|
||||
if(b.mode != +Branch2::Mode::RW)
|
||||
continue;
|
||||
bt_._branches.emplace_back(b);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user