2013-12-19 19:22:08 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/mitchellh/cli"
|
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
|
|
|
"os"
|
2016-01-30 01:00:08 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/consul/lib"
|
2013-12-19 19:22:08 +00:00
|
|
|
)
|
|
|
|
|
2016-01-30 01:00:08 +00:00
|
|
|
func init() {
|
|
|
|
lib.SeedMathRand()
|
|
|
|
}
|
|
|
|
|
2013-12-19 19:22:08 +00:00
|
|
|
func main() {
|
|
|
|
os.Exit(realMain())
|
|
|
|
}
|
|
|
|
|
|
|
|
func realMain() int {
|
|
|
|
log.SetOutput(ioutil.Discard)
|
|
|
|
|
|
|
|
// Get the command line args. We shortcut "--version" and "-v" to
|
|
|
|
// just show the version.
|
|
|
|
args := os.Args[1:]
|
|
|
|
for _, arg := range args {
|
2015-03-11 23:33:55 +00:00
|
|
|
if arg == "--" {
|
|
|
|
break
|
|
|
|
}
|
2013-12-19 19:22:08 +00:00
|
|
|
if arg == "-v" || arg == "--version" {
|
|
|
|
newArgs := make([]string, len(args)+1)
|
|
|
|
newArgs[0] = "version"
|
|
|
|
copy(newArgs[1:], args)
|
|
|
|
args = newArgs
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cli := &cli.CLI{
|
|
|
|
Args: args,
|
|
|
|
Commands: Commands,
|
2014-04-11 23:23:05 +00:00
|
|
|
HelpFunc: cli.BasicHelpFunc("consul"),
|
2013-12-19 19:22:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
exitCode, err := cli.Run()
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "Error executing CLI: %s\n", err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
return exitCode
|
|
|
|
}
|