pkg/signals/signal_posix.go (6 lines of code) (raw):

//go:build !windows // +build !windows // Copyright (c) 2020, 2021, Oracle and/or its affiliates. // // Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/ package signals import ( "os" "syscall" ) var shutdownSignals = []os.Signal{os.Interrupt, syscall.SIGTERM}