diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-03-22 21:46:05 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-03-22 21:46:05 +0000 |
commit | 96c28157c145b9093e23799987151e1a5f0909c0 (patch) | |
tree | 7541988c5426745e8e5fe7bd6279e6aa52cc3757 /util/startup.lua | |
parent | 496b5277c35288b5c8672ca5839706a693df3156 (diff) | |
download | prosody-96c28157c145b9093e23799987151e1a5f0909c0.tar.gz prosody-96c28157c145b9093e23799987151e1a5f0909c0.zip |
util.startup: Restore user switching
Diffstat (limited to 'util/startup.lua')
-rw-r--r-- | util/startup.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util/startup.lua b/util/startup.lua index 627c7015..45d5c5c2 100644 --- a/util/startup.lua +++ b/util/startup.lua @@ -484,10 +484,11 @@ end -- prosodyctl only function startup.prosodyctl() startup.read_config(); + startup.init_global_state(); startup.chdir(); + startup.switch_user(); startup.check_dependencies(); startup.force_console_logging(); - startup.init_global_state(); startup.init_logging(); startup.log_dependency_warnings(); startup.check_unwriteable(); |