Catch the standard Unix SIGTERM kill signal and do a graceful shutdown of PyBitmessage.

We already do this for the SIGINT kill signal. The change allows us to do a clean
shutdown of PyBitmessage when its process has been separated from the terminal.
This commit is contained in:
JonathanCoe 2014-08-26 13:55:42 +02:00
parent 111d60dde8
commit 3b42805efc
1 changed files with 1 additions and 0 deletions

View File

@ -172,6 +172,7 @@ class Main:
curses = True
signal.signal(signal.SIGINT, helper_generic.signal_handler)
signal.signal(signal.SIGTERM, helper_generic.signal_handler)
# signal.signal(signal.SIGINT, signal.SIG_DFL)
helper_bootstrap.knownNodes()