Browse Source

allow distro mount command to use disableXAttr (#6872)

pull/6873/head
Erik Jacobson 4 months ago
committed by GitHub
parent
commit
77397be070
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 7
      weed/command/fuse_std.go

7
weed/command/fuse_std.go

@ -193,6 +193,13 @@ func runFuse(cmd *Command, args []string) bool {
} else {
panic(fmt.Errorf("readOnly: %s", err))
}
case "disableXAttr":
if parsed, err := strconv.ParseBool(parameter.value); err == nil {
mountOptions.disableXAttr = &parsed
} else {
panic(fmt.Errorf("disableXAttr: %s", err))
}
case "cpuprofile":
mountCpuProfile = &parameter.value
case "memprofile":

Loading…
Cancel
Save