2013-12-19 19:22:08 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-03-09 22:54:21 +00:00
|
|
|
"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 {
|
2016-07-20 01:38:15 +00:00
|
|
|
HumanVersion string
|
|
|
|
Ui cli.Ui
|
2013-12-19 19:22:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *VersionCommand) Help() string {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *VersionCommand) Run(_ []string) int {
|
2016-07-20 01:38:15 +00:00
|
|
|
c.Ui.Output(fmt.Sprintf("Consul Version: %s", c.HumanVersion))
|
2016-07-19 22:06:32 +00:00
|
|
|
c.Ui.Output(fmt.Sprintf("Supported Protocol Version(s): %d to %d",
|
|
|
|
consul.ProtocolVersionMin, consul.ProtocolVersionMax))
|
2013-12-19 19:22:08 +00:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *VersionCommand) Synopsis() string {
|
|
|
|
return "Prints the Consul version"
|
|
|
|
}
|