mirror of
https://github.com/trapexit/mergerfs.git
synced 2025-03-14 09:55:12 +08:00
fsname set to list of src mounts. closes #9
This commit is contained in:
parent
4a0bc4aef7
commit
18358261af
@ -124,6 +124,24 @@ option_processor(void *data,
|
||||
return rv;
|
||||
}
|
||||
|
||||
static
|
||||
void
|
||||
set_fsname(struct fuse_args &args,
|
||||
const config::Config &config)
|
||||
{
|
||||
if(config.srcmounts.size() > 0)
|
||||
{
|
||||
std::string fsname;
|
||||
|
||||
fsname = "-ofsname=";
|
||||
fsname += config.srcmounts[0];
|
||||
for(size_t i = 1; i < config.srcmounts.size(); i++)
|
||||
fsname += ';' + config.srcmounts[i];
|
||||
|
||||
fuse_opt_insert_arg(&args,1,fsname.c_str());
|
||||
}
|
||||
}
|
||||
|
||||
namespace mergerfs
|
||||
{
|
||||
namespace options
|
||||
@ -132,10 +150,14 @@ namespace mergerfs
|
||||
parse(struct fuse_args &args,
|
||||
config::Config &config)
|
||||
{
|
||||
|
||||
fuse_opt_parse(&args,
|
||||
&config,
|
||||
NULL,
|
||||
::option_processor);
|
||||
|
||||
set_fsname(args,config);
|
||||
|
||||
config.updateReadStr();
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user