File size: 168 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
package main
import (
"golang.org/x/sys/unix"
)
func init() {
shutdownSignals = append(shutdownSignals, unix.SIGTERM)
supportedSignals["SIGUSR2"] = unix.SIGUSR2
}
|
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
package main
import (
"golang.org/x/sys/unix"
)
func init() {
shutdownSignals = append(shutdownSignals, unix.SIGTERM)
supportedSignals["SIGUSR2"] = unix.SIGUSR2
}
|