aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_s3_configure.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-12-06 21:54:55 -0800
committerChris Lu <chris.lu@gmail.com>2020-12-06 21:54:55 -0800
commit57578a6cd1646f8c95f79ca215be6330afad3b89 (patch)
tree31176020db36f83ffc3a61ef389373dc74e68824 /weed/shell/command_s3_configure.go
parent78f3ab439cf6a83c913ca6e7d5e2ee78b6c3eb3d (diff)
downloadseaweedfs-57578a6cd1646f8c95f79ca215be6330afad3b89.tar.xz
seaweedfs-57578a6cd1646f8c95f79ca215be6330afad3b89.zip
change parameter help message
Diffstat (limited to 'weed/shell/command_s3_configure.go')
-rw-r--r--weed/shell/command_s3_configure.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/shell/command_s3_configure.go b/weed/shell/command_s3_configure.go
index a62cec0c3..f081eb303 100644
--- a/weed/shell/command_s3_configure.go
+++ b/weed/shell/command_s3_configure.go
@@ -33,7 +33,7 @@ func (c *commandS3Configure) Help() string {
func (c *commandS3Configure) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
s3ConfigureCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
- actions := s3ConfigureCommand.String("actions", "", "actions names")
+ actions := s3ConfigureCommand.String("actions", "", "comma separated actions names: Read,Write,List,Tagging,Admin")
user := s3ConfigureCommand.String("user", "", "user name")
buckets := s3ConfigureCommand.String("buckets", "", "bucket name")
accessKey := s3ConfigureCommand.String("access_key", "", "specify the access key")