initial commit
This commit is contained in:
commit
7715fcf373
37 changed files with 2957 additions and 0 deletions
20
pkg/haproxy/systemd.go
Normal file
20
pkg/haproxy/systemd.go
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
package haproxy
|
||||
|
||||
import (
|
||||
"context"
|
||||
"os/exec"
|
||||
)
|
||||
|
||||
const systemctl = "systemctl"
|
||||
|
||||
type SystemdManager struct {
|
||||
service string
|
||||
}
|
||||
|
||||
func NewSystemdManager(service string) *SystemdManager {
|
||||
return &SystemdManager{service}
|
||||
}
|
||||
|
||||
func (sm *SystemdManager) Reload(ctx context.Context) error {
|
||||
return exec.CommandContext(ctx, systemctl, "reload", sm.service).Run()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue