mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
mod_posix: Updated to use the new events API.
This commit is contained in:
parent
eab4099f57
commit
e981541bc4
1 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ local umask = module:get_option("umask") or "027";
|
||||||
pposix.umask(umask);
|
pposix.umask(umask);
|
||||||
|
|
||||||
-- Allow switching away from root, some people like strange ports.
|
-- Allow switching away from root, some people like strange ports.
|
||||||
module:add_event_hook("server-started", function ()
|
module:hook("server-started", function ()
|
||||||
local uid = module:get_option("setuid");
|
local uid = module:get_option("setuid");
|
||||||
local gid = module:get_option("setgid");
|
local gid = module:get_option("setgid");
|
||||||
if gid then
|
if gid then
|
||||||
|
@ -158,7 +158,7 @@ else
|
||||||
write_pidfile();
|
write_pidfile();
|
||||||
end
|
end
|
||||||
|
|
||||||
module:add_event_hook("server-stopped", remove_pidfile);
|
module:hook("server-stopped", remove_pidfile);
|
||||||
|
|
||||||
-- Set signal handlers
|
-- Set signal handlers
|
||||||
if signal.signal then
|
if signal.signal then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue