open-consul/command/leave.go

56 lines
1.2 KiB
Go
Raw Normal View History

2013-12-31 21:06:33 +00:00
package command
import (
"fmt"
"github.com/hashicorp/consul/command/base"
2013-12-31 21:06:33 +00:00
"strings"
)
// LeaveCommand is a Command implementation that instructs
// the Consul agent to gracefully leave the cluster
type LeaveCommand struct {
base.Command
2013-12-31 21:06:33 +00:00
}
func (c *LeaveCommand) Help() string {
helpText := `
Usage: consul leave [options]
2013-12-31 21:06:33 +00:00
Causes the agent to gracefully leave the Consul cluster and shutdown.
` + c.Command.Help()
2013-12-31 21:06:33 +00:00
return strings.TrimSpace(helpText)
}
func (c *LeaveCommand) Run(args []string) int {
f := c.Command.NewFlagSet(c)
if err := c.Command.Parse(args); err != nil {
2013-12-31 21:06:33 +00:00
return 1
}
nonFlagArgs := f.Args()
if len(nonFlagArgs) > 0 {
2017-04-21 00:02:42 +00:00
c.UI.Error(fmt.Sprintf("Error found unexpected args: %v", nonFlagArgs))
c.UI.Output(c.Help())
return 1
}
2013-12-31 21:06:33 +00:00
client, err := c.Command.HTTPClient()
2013-12-31 21:06:33 +00:00
if err != nil {
2017-04-21 00:02:42 +00:00
c.UI.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err))
2013-12-31 21:06:33 +00:00
return 1
}
if err := client.Agent().Leave(); err != nil {
2017-04-21 00:02:42 +00:00
c.UI.Error(fmt.Sprintf("Error leaving: %s", err))
2013-12-31 21:06:33 +00:00
return 1
}
2017-04-21 00:02:42 +00:00
c.UI.Output("Graceful leave complete")
2013-12-31 21:06:33 +00:00
return 0
}
func (c *LeaveCommand) Synopsis() string {
return "Gracefully leaves the Consul cluster and shuts down"
}