mirror of
https://github.com/certbot/certbot.git
synced 2026-07-31 10:26:06 +02:00
Issue #3239: SIGTERM was added twice by mistake.
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user