aboutsummaryrefslogtreecommitdiffstats
path: root/util/startup.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2018-03-22 22:35:27 +0000
committerMatthew Wild <mwild1@gmail.com>2018-03-22 22:35:27 +0000
commit95737ca95023e1736527d485aa6ce0ae6ba71ffa (patch)
tree70a6c86fe4a5aff9ba1d180a4ea5be4d1b544170 /util/startup.lua
parentb28a70db8380c22d2a40a4740b2f78ee9c8c2df8 (diff)
downloadprosody-95737ca95023e1736527d485aa6ce0ae6ba71ffa.tar.gz
prosody-95737ca95023e1736527d485aa6ce0ae6ba71ffa.zip
util.startup: Expose user switching information via prosody global object
Diffstat (limited to 'util/startup.lua')
-rw-r--r--util/startup.lua9
1 files changed, 4 insertions, 5 deletions
diff --git a/util/startup.lua b/util/startup.lua
index d8d9866f..d8f67d4e 100644
--- a/util/startup.lua
+++ b/util/startup.lua
@@ -364,7 +364,6 @@ function startup.switch_user()
-- NOTE: This function is only used by prosodyctl.
-- The prosody process is built with the assumption that
-- it is already started as the appropriate user.
- local switched_user, current_uid;
local want_pposix_version = "0.4.0";
local have_pposix, pposix = pcall(require, "util.pposix");
@@ -375,10 +374,10 @@ function startup.switch_user()
tostring(pposix._VERSION), want_pposix_version));
os.exit(1);
end
- current_uid = pposix.getuid();
+ prosody.current_uid = pposix.getuid();
local arg_root = arg[1] == "--root";
if arg_root then table.remove(arg, 1); end
- if current_uid == 0 and config.get("*", "run_as_root") ~= true and not arg_root then
+ if prosody.current_uid == 0 and config.get("*", "run_as_root") ~= true and not arg_root then
-- We haz root!
local desired_user = config.get("*", "prosody_user") or "prosody";
local desired_group = config.get("*", "prosody_group") or desired_user;
@@ -390,10 +389,10 @@ function startup.switch_user()
ok, err = pposix.setuid(desired_user);
if ok then
-- Yay!
- switched_user = true;
+ prosody.switched_user = true;
end
end
- if not switched_user then
+ if not prosody.switched_user then
-- Boo!
print("Warning: Couldn't switch to Prosody user/group '"..tostring(desired_user).."'/'"..tostring(desired_group).."': "..tostring(err));
else