mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f2614f2107
Signed-off-by: Alexander Morozov <lk4d4@docker.com>
16 lines
326 B
Go
16 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,
|
|
}
|