open-consul/command/reload.go

52 lines
1.0 KiB
Go
Raw Normal View History

2014-06-11 17:58:26 +00:00
package command
import (
"fmt"
"github.com/hashicorp/consul/command/base"
2014-06-11 17:58:26 +00:00
"strings"
)
// ReloadCommand is a Command implementation that instructs
// the Consul agent to reload configurations
type ReloadCommand struct {
base.Command
2014-06-11 17:58:26 +00:00
}
func (c *ReloadCommand) Help() string {
helpText := `
Usage: consul reload
Causes the agent to reload configurations. This can be used instead
of sending the SIGHUP signal to the agent.
` + c.Command.Help()
2014-06-11 17:58:26 +00:00
return strings.TrimSpace(helpText)
}
func (c *ReloadCommand) Run(args []string) int {
c.Command.NewFlagSet(c)
if err := c.Command.Parse(args); err != nil {
2014-06-11 17:58:26 +00:00
return 1
}
client, err := c.Command.HTTPClient()
2014-06-11 17:58:26 +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))
2014-06-11 17:58:26 +00:00
return 1
}
if err := client.Agent().Reload(); err != nil {
2017-04-21 00:02:42 +00:00
c.UI.Error(fmt.Sprintf("Error reloading: %s", err))
2014-06-11 17:58:26 +00:00
return 1
}
2017-04-21 00:02:42 +00:00
c.UI.Output("Configuration reload triggered")
2014-06-11 17:58:26 +00:00
return 0
}
func (c *ReloadCommand) Synopsis() string {
return "Triggers the agent to reload configuration files"
}