aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_fs_configure.go
diff options
context:
space:
mode:
authorbingoohuang <bingoo.huang@gmail.com>2021-07-12 13:51:21 +0800
committerbingoohuang <bingoo.huang@gmail.com>2021-07-12 13:51:21 +0800
commit9e48bff8ee565546998b780bdd463fa94a73cce4 (patch)
tree5d4be291c5c78e9396dad993f59d871d5d604ed0 /weed/shell/command_fs_configure.go
parent272c7836c3a97c0ab8b31e335d7fa6efc769edc0 (diff)
downloadseaweedfs-9e48bff8ee565546998b780bdd463fa94a73cce4.tar.xz
seaweedfs-9e48bff8ee565546998b780bdd463fa94a73cce4.zip
fix typo in fs.configure help message text
Diffstat (limited to 'weed/shell/command_fs_configure.go')
-rw-r--r--weed/shell/command_fs_configure.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/weed/shell/command_fs_configure.go b/weed/shell/command_fs_configure.go
index a7e601bec..29cc54792 100644
--- a/weed/shell/command_fs_configure.go
+++ b/weed/shell/command_fs_configure.go
@@ -30,17 +30,17 @@ func (c *commandFsConfigure) Help() string {
fs.configure
# trying the changes and see the possible configuration file content
- fs.configure -locationPrfix=/my/folder -collection=abc
- fs.configure -locationPrfix=/my/folder -collection=abc -ttl=7d
+ fs.configure -locationPrefix=/my/folder -collection=abc
+ fs.configure -locationPrefix=/my/folder -collection=abc -ttl=7d
# example: configure adding only 1 physical volume for each bucket collection
- fs.configure -locationPrfix=/buckets/ -volumeGrowthCount=1
+ fs.configure -locationPrefix=/buckets/ -volumeGrowthCount=1
# apply the changes
- fs.configure -locationPrfix=/my/folder -collection=abc -apply
+ fs.configure -locationPrefix=/my/folder -collection=abc -apply
# delete the changes
- fs.configure -locationPrfix=/my/folder -delete -apply
+ fs.configure -locationPrefix=/my/folder -delete -apply
`
}