1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-16 00:04:40 +00:00

mount: ignore --allow-root flag with a warning as it has been removed upstream

For background see: https://github.com/bazil/fuse/issues/144
This commit is contained in:
Nick Craig-Wood
2020-02-25 14:21:03 +00:00
parent d6e10dba33
commit 9663f9b2ab

View File

@@ -51,7 +51,8 @@ func mountOptions(device string) (options []fuse.MountOption) {
options = append(options, fuse.AllowOther())
}
if mountlib.AllowRoot {
options = append(options, fuse.AllowRoot())
// options = append(options, fuse.AllowRoot())
fs.Errorf(nil, "Ignoring --allow-root. Support has been removed upstream - see https://github.com/bazil/fuse/issues/144 for more info")
}
if mountlib.DefaultPermissions {
options = append(options, fuse.DefaultPermissions())