mirror of
https://github.com/juanfont/headscale.git
synced 2025-08-12 19:47:41 +00:00
Remove flag that cant be trapped
This commit is contained in:
2
app.go
2
app.go
@@ -356,7 +356,7 @@ func (h *Headscale) Serve() error {
|
|||||||
|
|
||||||
// Handle common process-killing signals so we can gracefully shut down:
|
// Handle common process-killing signals so we can gracefully shut down:
|
||||||
sigc := make(chan os.Signal, 1)
|
sigc := make(chan os.Signal, 1)
|
||||||
signal.Notify(sigc, os.Interrupt, os.Kill, syscall.SIGTERM)
|
signal.Notify(sigc, os.Interrupt, syscall.SIGTERM)
|
||||||
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
|
sig := <-c
|
||||||
|
Reference in New Issue
Block a user