fix quotation marks

This commit is contained in:
Stephan Müller 2019-04-19 22:51:24 +02:00
parent 7d008c14a3
commit e9523f05ca
No known key found for this signature in database
GPG Key ID: 4650F39E5B5E1894
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ func main() {
RunE: commandRun, RunE: commandRun,
} }
dumpCmd.Flags().String("source", "file", "Source type, one of 'file', 'consul', 'etcd', 'zookeeper', 'boltdb'. Options for each source type are prefixed with `source.<type>.`") dumpCmd.Flags().String("source", "file", "Source type, one of 'file', 'consul', 'etcd', 'zookeeper', 'boltdb'. Options for each source type are prefixed with 'source.<type>'.")
dumpCmd.Flags().String("source.file", "./acme.json", "Path to 'acme.json' for file source.") dumpCmd.Flags().String("source.file", "./acme.json", "Path to 'acme.json' for file source.")
// Generic parameters for Key/Value backends // Generic parameters for Key/Value backends

View File

@ -75,7 +75,7 @@ Flags:
-h, --help help for dump -h, --help help for dump
--key-ext string The file extension of the generated private keys. (default ".key") --key-ext string The file extension of the generated private keys. (default ".key")
--key-name string The file name (without extension) of the generated private keys. (default "privatekey") --key-name string The file name (without extension) of the generated private keys. (default "privatekey")
--source source.<type>. Source type, one of 'file', 'consul', 'etcd', 'zookeeper', 'boltdb'. Options for each source type are prefixed with source.<type>. (default "file") --source string Source type, one of 'file', 'consul', 'etcd', 'zookeeper', 'boltdb'. Options for each source type are prefixed with 'source.<type>'. (default "file")
--source.file string Path to 'acme.json' for file source. (default "./acme.json") --source.file string Path to 'acme.json' for file source. (default "./acme.json")
--source.kv.boltdb.bucket string Bucket for boltdb. (default "traefik") --source.kv.boltdb.bucket string Bucket for boltdb. (default "traefik")
--source.kv.boltdb.persist-connection Persist connection for boltdb. --source.kv.boltdb.persist-connection Persist connection for boltdb.