diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-02-22 02:03:12 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-02-22 02:03:12 -0800 |
| commit | 62191b08eafe896f0f403bbf759f1cb07a59856f (patch) | |
| tree | 953acf93d77c79680fc02079c1efe5037b0c810f /weed/command/webdav.go | |
| parent | 30b30b8fe0bdfef08c27268970b4df89f7f0abae (diff) | |
| download | seaweedfs-62191b08eafe896f0f403bbf759f1cb07a59856f.tar.xz seaweedfs-62191b08eafe896f0f403bbf759f1cb07a59856f.zip | |
disk type support custom tags
Diffstat (limited to 'weed/command/webdav.go')
| -rw-r--r-- | weed/command/webdav.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/webdav.go b/weed/command/webdav.go index 3e4532d6e..2bd4a3c61 100644 --- a/weed/command/webdav.go +++ b/weed/command/webdav.go @@ -39,7 +39,7 @@ func init() { webDavStandaloneOptions.port = cmdWebDav.Flag.Int("port", 7333, "webdav server http listen port") webDavStandaloneOptions.collection = cmdWebDav.Flag.String("collection", "", "collection to create the files") webDavStandaloneOptions.replication = cmdWebDav.Flag.String("replication", "", "replication to create the files") - webDavStandaloneOptions.disk = cmdWebDav.Flag.String("disk", "", "[hdd|ssd] hard drive or solid state drive") + webDavStandaloneOptions.disk = cmdWebDav.Flag.String("disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag") webDavStandaloneOptions.tlsPrivateKey = cmdWebDav.Flag.String("key.file", "", "path to the TLS private key file") webDavStandaloneOptions.tlsCertificate = cmdWebDav.Flag.String("cert.file", "", "path to the TLS certificate file") webDavStandaloneOptions.cacheDir = cmdWebDav.Flag.String("cacheDir", os.TempDir(), "local cache directory for file chunks") |
