mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
prosodyctl: Don't switch user if we are root and run_as_root is enabled
This commit is contained in:
parent
33be2cd463
commit
5ce98ecf13
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ local ok, pposix = pcall(require, "util.pposix");
|
||||||
if ok and pposix then
|
if ok and pposix then
|
||||||
if pposix._VERSION ~= want_pposix_version then print(string.format("Unknown version (%s) of binary pposix module, expected %s", tostring(pposix._VERSION), want_pposix_version)); return; end
|
if pposix._VERSION ~= want_pposix_version then print(string.format("Unknown version (%s) of binary pposix module, expected %s", tostring(pposix._VERSION), want_pposix_version)); return; end
|
||||||
current_uid = pposix.getuid();
|
current_uid = pposix.getuid();
|
||||||
if current_uid == 0 then
|
if current_uid == 0 and config.get("*", "run_as_root") ~= true then
|
||||||
-- We haz root!
|
-- We haz root!
|
||||||
local desired_user = config.get("*", "prosody_user") or "prosody";
|
local desired_user = config.get("*", "prosody_user") or "prosody";
|
||||||
local desired_group = config.get("*", "prosody_group") or desired_user;
|
local desired_group = config.get("*", "prosody_group") or desired_user;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue