From 91a21b8f754027ff4b401a93c6be0c9d89d00183 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Wed, 19 Apr 2017 12:40:03 +0100 Subject: prosodyctl: Don't switch user if we are root and run_as_root is enabled --- prosodyctl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prosodyctl b/prosodyctl index efdc214c..c8accd82 100755 --- a/prosodyctl +++ b/prosodyctl @@ -141,7 +141,7 @@ local ok, pposix = pcall(require, "util.pposix"); 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 current_uid = pposix.getuid(); - if current_uid == 0 then + if current_uid == 0 and config.get("*", "run_as_root") ~= true then -- We haz root! local desired_user = config.get("*", "prosody_user") or "prosody"; local desired_group = config.get("*", "prosody_group") or desired_user; -- cgit v1.2.3