From 49cf9464ac20d51857976f3bcb1a6ee12c15fa70 Mon Sep 17 00:00:00 2001 From: Adam Jensen Date: Wed, 5 Apr 2017 10:03:22 -0600 Subject: [PATCH] Add commonly used graceful signals --- bin/tiller | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tiller b/bin/tiller index cacd2c9..e2b48db 100755 --- a/bin/tiller +++ b/bin/tiller @@ -297,7 +297,7 @@ module Tiller log.info("Child process forked with PID #{child_pid}") # Catch signals and send them on to the child processes - [ :INT, :TERM, :HUP ].each do |sig| + [ :INT, :TERM, :HUP, :QUIT, :USR1, :USR2, :WINCH ].each do |sig| Signal.trap(sig) do pids.each { |p| signal(sig, p, :verbose => config[:verbose])} end