aboutsummaryrefslogtreecommitdiff
path: root/weed/command/mount.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2019-07-24 00:03:05 -0700
committerChris Lu <chris.lu@gmail.com>2019-07-24 00:03:05 -0700
commit5956dfd08d690ee67bcd4a7f5730785f7a6df201 (patch)
tree0ec5f401c2129e9ea5bb9e21b3acfe3d0f5dafe3 /weed/command/mount.go
parent3f851feb59d9ffc80ac366222435eb54f98456ad (diff)
downloadseaweedfs-5956dfd08d690ee67bcd4a7f5730785f7a6df201.tar.xz
seaweedfs-5956dfd08d690ee67bcd4a7f5730785f7a6df201.zip
mount: add umask option
related to https://github.com/chrislusf/seaweedfs/issues/978
Diffstat (limited to 'weed/command/mount.go')
-rw-r--r--weed/command/mount.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/weed/command/mount.go b/weed/command/mount.go
index ec790c999..71c1a4387 100644
--- a/weed/command/mount.go
+++ b/weed/command/mount.go
@@ -17,6 +17,7 @@ type MountOptions struct {
chunkSizeLimitMB *int
dataCenter *string
allowOthers *bool
+ umaskString *string
}
var (
@@ -37,6 +38,7 @@ func init() {
mountOptions.chunkSizeLimitMB = cmdMount.Flag.Int("chunkSizeLimitMB", 4, "local write buffer size, also chunk large files")
mountOptions.dataCenter = cmdMount.Flag.String("dataCenter", "", "prefer to write to the data center")
mountOptions.allowOthers = cmdMount.Flag.Bool("allowOthers", true, "allows other users to access the file system")
+ mountOptions.umaskString = cmdMount.Flag.String("umask", "022", "octal umask, e.g., 022, 0111")
mountCpuProfile = cmdMount.Flag.String("cpuprofile", "", "cpu profile output file")
mountMemProfile = cmdMount.Flag.String("memprofile", "", "memory profile output file")
}