Signed-off-by: Alexander Morozov <lk4d4@docker.com> Upstream-commit: f2614f2107c838d014d31b806e3b8a9f1395cb2b Component: engine
17 lines
326 B
Go
17 lines
326 B
Go
// +build !windows
|
|
|
|
package notary
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
// NotarySupportedSignals contains the signals we would like to capture:
|
|
// - SIGUSR1, indicates a increment of the log level.
|
|
// - SIGUSR2, indicates a decrement of the log level.
|
|
var NotarySupportedSignals = []os.Signal{
|
|
syscall.SIGUSR1,
|
|
syscall.SIGUSR2,
|
|
}
|