From 78be92ab7033d14fd809f0af80f80bbc0c63cb16 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sun, 24 Mar 2024 21:31:47 +0100 Subject: util.startup: Don't use not yet existent shutdown procedure when started as root (thanks SigmaTel71) --- util/startup.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/startup.lua b/util/startup.lua index 76c901ba..997e599a 100644 --- a/util/startup.lua +++ b/util/startup.lua @@ -694,7 +694,7 @@ function startup.check_user() if pposix.getuid() == 0 and not config.get("*", "run_as_root") then log("error", "Danger, Will Robinson! Prosody doesn't need to be run as root, so don't do it!"); log("error", "For more information on running Prosody as root, see https://prosody.im/doc/root"); - prosody.shutdown("Refusing to run as root", 1); + os.exit(1); -- Refusing to run as root end end -- cgit v1.2.3