Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
fix(deisctl): remove unimplemented --verbose flag from "deisctl config"
Browse files Browse the repository at this point in the history
  • Loading branch information
mboersma committed Dec 16, 2014
1 parent 430edbe commit fe56989
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 17 deletions.
7 changes: 2 additions & 5 deletions deisctl/cmd/cmd.go
Expand Up @@ -583,11 +583,8 @@ Note: "deisctl config platform set sshPrivateKey=" expects a path
to a private key.
Usage:
deisctl config <target> get [<key>...] [options]
deisctl config <target> set <key=val>... [options]
Options:
--verbose print out the request bodies [default: false]
deisctl config <target> get [<key>...]
deisctl config <target> set <key=val>...
Examples:
deisctl config platform set domain=mydomain.com
Expand Down
12 changes: 0 additions & 12 deletions deisctl/config/config.go
Expand Up @@ -9,10 +9,6 @@ import (

// Config runs the config subcommand
func Config(args map[string]interface{}) error {
err := setConfigFlags(args)
if err != nil {
return err
}
return doConfig(args)
}

Expand All @@ -33,14 +29,6 @@ func CheckConfig(root string, k string) error {
return nil
}

// Flags for config package
var Flags struct {
}

func setConfigFlags(args map[string]interface{}) error {
return nil
}

func doConfig(args map[string]interface{}) error {
client, err := getEtcdClient()
if err != nil {
Expand Down

0 comments on commit fe56989

Please sign in to comment.