| package main | |
| import ( | |
| "golang.org/x/sys/unix" | |
| ) | |
| func init() { | |
| shutdownSignals = append(shutdownSignals, unix.SIGTERM) | |
| supportedSignals["SIGUSR2"] = unix.SIGUSR2 | |
| } | |
| package main | |
| import ( | |
| "golang.org/x/sys/unix" | |
| ) | |
| func init() { | |
| shutdownSignals = append(shutdownSignals, unix.SIGTERM) | |
| supportedSignals["SIGUSR2"] = unix.SIGUSR2 | |
| } | |