forked from hashicorp/consul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reload.go
50 lines (38 loc) · 1 KB
/
reload.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package command
import (
"fmt"
"strings"
)
// ReloadCommand is a Command implementation that instructs
// the Consul agent to reload configurations
type ReloadCommand struct {
BaseCommand
}
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.BaseCommand.Help()
return strings.TrimSpace(helpText)
}
func (c *ReloadCommand) Run(args []string) int {
c.BaseCommand.NewFlagSet(c)
if err := c.BaseCommand.Parse(args); err != nil {
return 1
}
client, err := c.BaseCommand.HTTPClient()
if err != nil {
c.UI.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err))
return 1
}
if err := client.Agent().Reload(); err != nil {
c.UI.Error(fmt.Sprintf("Error reloading: %s", err))
return 1
}
c.UI.Output("Configuration reload triggered")
return 0
}
func (c *ReloadCommand) Synopsis() string {
return "Triggers the agent to reload configuration files"
}