2016-10-31 16:50:02 +01:00
|
|
|
package fuse
|
|
|
|
|
2020-06-29 15:28:52 +02:00
|
|
|
func localVolume(conf *mountConfig) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func volumeName(name string) MountOption {
|
|
|
|
return dummyOption
|
|
|
|
}
|
|
|
|
|
2016-10-31 16:50:02 +01:00
|
|
|
func daemonTimeout(name string) MountOption {
|
|
|
|
return func(conf *mountConfig) error {
|
|
|
|
conf.options["timeout"] = name
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2020-06-29 15:28:52 +02:00
|
|
|
|
|
|
|
func noAppleXattr(conf *mountConfig) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func noAppleDouble(conf *mountConfig) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func exclCreate(conf *mountConfig) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func noBrowse(conf *mountConfig) error {
|
|
|
|
return nil
|
|
|
|
}
|