From 7c79e962492524b9f2af8d036bdad9bab85f1c56 Mon Sep 17 00:00:00 2001 From: Aidin Gharibnavaz Date: Sat, 17 Sep 2016 21:55:36 +0430 Subject: [PATCH] Issue #3239: SIGTERM was added twice by mistake. --- certbot/error_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot/error_handler.py b/certbot/error_handler.py index 3b5a38031..819d32405 100644 --- a/certbot/error_handler.py +++ b/certbot/error_handler.py @@ -17,7 +17,7 @@ logger = logging.getLogger(__name__) # immediately. _SIGNALS = [signal.SIGTERM] if os.name != "nt": - for signal_code in [signal.SIGTERM, signal.SIGHUP, signal.SIGQUIT, + for signal_code in [signal.SIGHUP, signal.SIGQUIT, signal.SIGXCPU, signal.SIGXFSZ]: # Adding only those signals that their default action is not Ignore. # This is platform-dependent, so we check it dynamically.