mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 22:27:38 +03:00
Add setuid and setgid support.
This commit is contained in:
parent
8162f0368b
commit
6a260eaa2c
1 changed files with 14 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue