Browse Source

Merge pull request #2189 from bingoohuang/master

fix typo in fs.configure help message text
pull/2211/head
Chris Lu 3 years ago
committed by GitHub
parent
commit
ae7129f717
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      weed/shell/command_fs_configure.go

10
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
`
}

Loading…
Cancel
Save