# HG changeset patch # User Kim Alvefur # Date 1711312307 -3600 # Node ID 3ce550ce44ce541b31fad6bca3e0526fe97bd5e2 # Parent 720aed1f5cf242ea3d798ec46a67d0ec32a90837 util.startup: Don't use not yet existent shutdown procedure when started as root (thanks SigmaTel71) diff -r 720aed1f5cf2 -r 3ce550ce44ce 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