Add setuid and setgid support.

This commit is contained in:
Tobias Markmann 2009-08-15 12:17:27 +02:00
parent 8162f0368b
commit 6a260eaa2c

View file

@ -24,6 +24,20 @@ local prosody = _G.prosody;
module.host = "*"; -- we're a global module
-- Allow switching away from root, some people like strange ports.
module:add_event_hook("server-started", function ()
local uid = config_get("*", "core", "setuid");
local gid = config_get("*", "core", "setgid");
if gid then
pposix.setgid(gid);
module:log("debug", "Change group to "..gid..".");
end
if uid then
pposix.setuid(uid);
module:log("debug", "Change user to "..uid..".");
end
end);
-- Don't even think about it!
module:add_event_hook("server-starting", function ()
if pposix.getuid() == 0 and not config_get("*", "core", "run_as_root") then