Software /
code /
prosody
Diff
plugins/mod_posix.lua @ 2338:2a163f6a4bc2
mod_posix: Set empty SIGINT handler when a SIGINT is caught
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 08 Dec 2009 01:16:24 +0000 |
parent | 2332:7772dde4010b |
child | 2342:8b20702d5b9e |
line wrap: on
line diff
--- a/plugins/mod_posix.lua Tue Dec 08 00:55:17 2009 +0000 +++ b/plugins/mod_posix.lua Tue Dec 08 01:16:24 2009 +0000 @@ -149,6 +149,7 @@ signal.signal("SIGINT", function () module:log("info", "Received SIGINT"); + signal.signal("SIGINT", function () end); -- Fixes us getting into some kind of loop prosody.unlock_globals(); prosody.shutdown("Received SIGINT"); prosody.lock_globals();