open-consul/command/version.go

39 lines
950 B
Go
Raw Normal View History

2013-12-19 19:22:08 +00:00
package command
import (
"fmt"
2017-04-21 00:02:42 +00:00
"github.com/hashicorp/consul/command/agent"
"github.com/hashicorp/consul/consul"
2013-12-19 19:22:08 +00:00
"github.com/mitchellh/cli"
)
// VersionCommand is a Command implementation prints the version.
type VersionCommand struct {
HumanVersion string
2017-04-21 00:02:42 +00:00
UI cli.Ui
2013-12-19 19:22:08 +00:00
}
func (c *VersionCommand) Help() string {
return ""
}
func (c *VersionCommand) Run(_ []string) int {
2017-04-21 00:02:42 +00:00
c.UI.Output(fmt.Sprintf("Consul %s", c.HumanVersion))
config := agent.DefaultConfig()
var supplement string
if config.Protocol < consul.ProtocolVersionMax {
supplement = fmt.Sprintf(" (agent will automatically use protocol >%d when speaking to compatible agents)",
config.Protocol)
}
2017-04-21 00:02:42 +00:00
c.UI.Output(fmt.Sprintf("Protocol %d spoken by default, understands %d to %d%s",
config.Protocol, consul.ProtocolVersionMin, consul.ProtocolVersionMax, supplement))
2013-12-19 19:22:08 +00:00
return 0
}
func (c *VersionCommand) Synopsis() string {
return "Prints the Consul version"
}