mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-26 08:53:05 +00:00
Support reloading ACLs with SIGHUP
Also continously listen for signals, not just once.
This commit is contained in:
parent
36dca3516a
commit
2feed18b28
1 changed files with 36 additions and 23 deletions
59
app.go
59
app.go
|
@ -728,35 +728,48 @@ func (h *Headscale) Serve() error {
|
||||||
syscall.SIGHUP)
|
syscall.SIGHUP)
|
||||||
go func(c chan os.Signal) {
|
go func(c chan os.Signal) {
|
||||||
// Wait for a SIGINT or SIGKILL:
|
// Wait for a SIGINT or SIGKILL:
|
||||||
sig := <-c
|
for {
|
||||||
switch sig {
|
sig := <-c
|
||||||
case syscall.SIGHUP:
|
switch sig {
|
||||||
log.Info().
|
case syscall.SIGHUP:
|
||||||
Str("signal", sig.String()).
|
log.Info().
|
||||||
Msg("Received SIGHUP, reloading ACL and Config")
|
Str("signal", sig.String()).
|
||||||
|
Msg("Received SIGHUP, reloading ACL and Config")
|
||||||
|
|
||||||
// TODO(kradalby): Reload config on SIGHUP
|
// TODO(kradalby): Reload config on SIGHUP
|
||||||
|
|
||||||
default:
|
if h.cfg.ACL.PolicyPath != "" {
|
||||||
log.Info().
|
aclPath := AbsolutePathFromConfigPath(h.cfg.ACL.PolicyPath)
|
||||||
Str("signal", sig.String()).
|
err := h.LoadACLPolicy(aclPath)
|
||||||
Msg("Received signal to stop, shutting down gracefully")
|
if err != nil {
|
||||||
|
log.Error().Err(err).Msg("Failed to reload ACL policy")
|
||||||
|
}
|
||||||
|
log.Info().
|
||||||
|
Str("path", aclPath).
|
||||||
|
Msg("ACL policy successfully reloaded")
|
||||||
|
}
|
||||||
|
|
||||||
// Gracefully shut down servers
|
default:
|
||||||
promHTTPServer.Shutdown(ctx)
|
log.Info().
|
||||||
httpServer.Shutdown(ctx)
|
Str("signal", sig.String()).
|
||||||
grpcSocket.GracefulStop()
|
Msg("Received signal to stop, shutting down gracefully")
|
||||||
|
|
||||||
// Close network listeners
|
// Gracefully shut down servers
|
||||||
promHTTPListener.Close()
|
promHTTPServer.Shutdown(ctx)
|
||||||
httpListener.Close()
|
httpServer.Shutdown(ctx)
|
||||||
grpcGatewayConn.Close()
|
grpcSocket.GracefulStop()
|
||||||
|
|
||||||
// Stop listening (and unlink the socket if unix type):
|
// Close network listeners
|
||||||
socketListener.Close()
|
promHTTPListener.Close()
|
||||||
|
httpListener.Close()
|
||||||
|
grpcGatewayConn.Close()
|
||||||
|
|
||||||
// And we're done:
|
// Stop listening (and unlink the socket if unix type):
|
||||||
os.Exit(0)
|
socketListener.Close()
|
||||||
|
|
||||||
|
// And we're done:
|
||||||
|
os.Exit(0)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}(sigc)
|
}(sigc)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue