2016-04-07 19:19:05 +00:00
|
|
|
package fuse
|
|
|
|
|
|
|
|
func localVolume(conf *mountConfig) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func volumeName(name string) MountOption {
|
|
|
|
return dummyOption
|
|
|
|
}
|
2016-07-20 14:08:34 +00:00
|
|
|
|
|
|
|
func daemonTimeout(name string) MountOption {
|
|
|
|
return func(conf *mountConfig) error {
|
|
|
|
conf.options["timeout"] = name
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func noAppleXattr(conf *mountConfig) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func noAppleDouble(conf *mountConfig) error {
|
|
|
|
return nil
|
|
|
|
}
|
2017-11-21 21:20:13 +00:00
|
|
|
|
|
|
|
func exclCreate(conf *mountConfig) error {
|
|
|
|
return nil
|
|
|
|
}
|