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

For background see: https://github.com/bazil/fuse/issues/144
s3-about
Nick Craig-Wood 2020-02-25 14:21:03 +00:00
parent d6e10dba33
commit 9663f9b2ab
1 changed files with 2 additions and 1 deletions

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())