mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #2957 from creack/handle_sigquit
Catch SIGQUIT for cleanup
This commit is contained in:
commit
67c03552f6
1 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@ func init() {
|
|||
|
||||
// jobInitApi runs the remote api server `srv` as a daemon,
|
||||
// Only one api server can run at the same time - this is enforced by a pidfile.
|
||||
// The signals SIGINT and SIGTERM are intercepted for cleanup.
|
||||
// The signals SIGINT, SIGQUIT and SIGTERM are intercepted for cleanup.
|
||||
func jobInitApi(job *engine.Job) engine.Status {
|
||||
job.Logf("Creating server")
|
||||
// FIXME: ImportEnv deprecates ConfigFromJob
|
||||
|
@ -56,7 +56,7 @@ func jobInitApi(job *engine.Job) engine.Status {
|
|||
}
|
||||
job.Logf("Setting up signal traps")
|
||||
c := make(chan os.Signal, 1)
|
||||
signal.Notify(c, os.Interrupt, os.Signal(syscall.SIGTERM))
|
||||
signal.Notify(c, os.Interrupt, syscall.SIGTERM, syscall.SIGQUIT)
|
||||
go func() {
|
||||
sig := <-c
|
||||
log.Printf("Received signal '%v', exiting\n", sig)
|
||||
|
|
Loading…
Reference in a new issue