Browse Source

command/keys: use PrefixedUi for keys command

pull/336/head
Ryan Uber 10 years ago
parent
commit
3a68d9e506
  1. 9
      command/keys.go

9
command/keys.go

@ -33,6 +33,13 @@ func (c *KeysCommand) Run(args []string) int {
return 1
}
c.Ui = &cli.PrefixedUi{
OutputPrefix: "",
InfoPrefix: "==> ",
ErrorPrefix: "",
Ui: c.Ui,
}
// Only accept a single argument
found := listKeys
for _, arg := range []string{installKey, useKey, removeKey} {
@ -57,6 +64,8 @@ func (c *KeysCommand) Run(args []string) int {
defer client.Close()
if listKeys {
c.Ui.Info("Asking all members for installed keys...")
var keys map[string]int
var numNodes int
var messages map[string]string

Loading…
Cancel
Save