mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.startup: Abort before initialization of logging when started as root
Prevents creation of log files owned by the root user which could be inaccessible once started correctly.
This commit is contained in:
parent
78be92ab70
commit
b41253bb49
1 changed files with 3 additions and 3 deletions
|
@ -692,8 +692,8 @@ function startup.check_user()
|
|||
if not pposix then return end
|
||||
-- Don't even think about it!
|
||||
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");
|
||||
print("Danger, Will Robinson! Prosody doesn't need to be run as root, so don't do it!");
|
||||
print("For more information on running Prosody as root, see https://prosody.im/doc/root");
|
||||
os.exit(1); -- Refusing to run as root
|
||||
end
|
||||
end
|
||||
|
@ -864,8 +864,8 @@ function startup.prosody()
|
|||
startup.parse_args();
|
||||
startup.init_global_state();
|
||||
startup.read_config();
|
||||
startup.init_logging();
|
||||
startup.check_user();
|
||||
startup.init_logging();
|
||||
startup.init_gc();
|
||||
startup.init_errors();
|
||||
startup.sanity_check();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue