Let's ignore HUP when daemonized.

This commit is contained in:
Jeremy Fincher 2004-04-20 22:19:17 +00:00
parent ea4259af2f
commit 59151542b9
1 changed files with 1 additions and 0 deletions

View File

@ -385,6 +385,7 @@ if __name__ == '__main__':
sys.stderr.close()
sys.stdout = StringIO.StringIO()
sys.stderr = StringIO.StringIO()
signal.signal(signal.SIGHUP, signal.SIG_IGN)
log.info('Completed daemonization. Current PID: %s', os.getpid())
# Let's write the PID file. This has to go after daemonization, obviously.