File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -583,11 +583,8 @@ Note: "deisctl config platform set sshPrivateKey=" expects a path
583583to a private key.
584584
585585Usage:
586- deisctl config <target> get [<key>...] [options]
587- deisctl config <target> set <key=val>... [options]
588-
589- Options:
590- --verbose print out the request bodies [default: false]
586+ deisctl config <target> get [<key>...]
587+ deisctl config <target> set <key=val>...
591588
592589Examples:
593590 deisctl config platform set domain=mydomain.com
Original file line number Diff line number Diff line change @@ -9,10 +9,6 @@ import (
99
1010// Config runs the config subcommand
1111func Config (args map [string ]interface {}) error {
12- err := setConfigFlags (args )
13- if err != nil {
14- return err
15- }
1612 return doConfig (args )
1713}
1814
@@ -33,14 +29,6 @@ func CheckConfig(root string, k string) error {
3329 return nil
3430}
3531
36- // Flags for config package
37- var Flags struct {
38- }
39-
40- func setConfigFlags (args map [string ]interface {}) error {
41- return nil
42- }
43-
4432func doConfig (args map [string ]interface {}) error {
4533 client , err := getEtcdClient ()
4634 if err != nil {
You can’t perform that action at this time.
0 commit comments