util.startup: Don't use not yet existent shutdown procedure when started as root (thanks SigmaTel71)
authorKim Alvefur <zash@zash.se>
Sun, 24 Mar 2024 21:31:47 +0100
changeset 13467 3ce550ce44ce
parent 13466 720aed1f5cf2
child 13468 2dbc169aae6a
util.startup: Don't use not yet existent shutdown procedure when started as root (thanks SigmaTel71)
util/startup.lua
--- a/util/startup.lua	Sun Mar 24 20:39:42 2024 +0100
+++ b/util/startup.lua	Sun Mar 24 21:31:47 2024 +0100
@@ -694,7 +694,7 @@
 	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