Erik Jacobson
4 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
7 additions and
0 deletions
-
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 = ¶meter.value |
|
|
|
case "memprofile": |
|
|
|