aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_fs_configure.go
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2024-10-22 08:50:42 -0700
committerchrislu <chris.lu@gmail.com>2024-10-22 08:51:02 -0700
commit73921ce4f640a183c7e5addddf8a6e5de5c5dfda (patch)
tree9f3f3d7ada5c19b85747bdba8111e1261c40a4ee /weed/shell/command_fs_configure.go
parent9369a88c5c659753aeced2c6aa62d0264632c2ea (diff)
downloadseaweedfs-73921ce4f640a183c7e5addddf8a6e5de5c5dfda.tar.xz
seaweedfs-73921ce4f640a183c7e5addddf8a6e5de5c5dfda.zip
adjust help message
Diffstat (limited to 'weed/shell/command_fs_configure.go')
-rw-r--r--weed/shell/command_fs_configure.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/shell/command_fs_configure.go b/weed/shell/command_fs_configure.go
index b70eb88fc..2dc1e1a14 100644
--- a/weed/shell/command_fs_configure.go
+++ b/weed/shell/command_fs_configure.go
@@ -60,7 +60,7 @@ func (c *commandFsConfigure) Do(args []string, commandEnv *CommandEnv, writer io
diskType := fsConfigureCommand.String("disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag")
fsync := fsConfigureCommand.Bool("fsync", false, "fsync for the writes")
isReadOnly := fsConfigureCommand.Bool("readOnly", false, "disable writes")
- worm := fsConfigureCommand.Bool("worm", false, "worm mode, If true, a file can only be changed once, after which it becomes readonly and undeletable, see https://en.wikipedia.org/wiki/Write_once_read_many")
+ worm := fsConfigureCommand.Bool("worm", false, "write-once-read-many, written files are readonly")
maxFileNameLength := fsConfigureCommand.Uint("maxFileNameLength", 0, "file name length limits in bytes for compatibility with Unix-based systems")
dataCenter := fsConfigureCommand.String("dataCenter", "", "assign writes to this dataCenter")
rack := fsConfigureCommand.String("rack", "", "assign writes to this rack")