mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
prosody: Move last cleanup and shutdown code into util.startup
This commit is contained in:
parent
f9478ab242
commit
ed06f22ae5
2 changed files with 17 additions and 13 deletions
14
prosody
14
prosody
|
@ -78,18 +78,6 @@ local function loop()
|
|||
end
|
||||
end
|
||||
|
||||
local function cleanup()
|
||||
prosody.log("info", "Shutdown status: Cleaning up");
|
||||
prosody.events.fire_event("server-cleanup");
|
||||
end
|
||||
|
||||
loop();
|
||||
|
||||
prosody.log("info", "Shutting down...");
|
||||
cleanup();
|
||||
prosody.events.fire_event("server-stopped");
|
||||
prosody.log("info", "Shutdown complete");
|
||||
|
||||
prosody.log("debug", "Shutdown reason was: %s", prosody.shutdown_reason or "not specified");
|
||||
prosody.log("debug", "Exiting with status code: %d", prosody.shutdown_code or 0);
|
||||
os.exit(prosody.shutdown_code, true);
|
||||
startup.shutdown();
|
||||
|
|
|
@ -624,6 +624,22 @@ function startup.make_dummy_hosts()
|
|||
end
|
||||
end
|
||||
|
||||
function startup.cleanup()
|
||||
prosody.log("info", "Shutdown status: Cleaning up");
|
||||
prosody.events.fire_event("server-cleanup");
|
||||
end
|
||||
|
||||
function startup.shutdown()
|
||||
prosody.log("info", "Shutting down...");
|
||||
startup.cleanup();
|
||||
prosody.events.fire_event("server-stopped");
|
||||
prosody.log("info", "Shutdown complete");
|
||||
|
||||
prosody.log("debug", "Shutdown reason was: %s", prosody.shutdown_reason or "not specified");
|
||||
prosody.log("debug", "Exiting with status code: %d", prosody.shutdown_code or 0);
|
||||
os.exit(prosody.shutdown_code);
|
||||
end
|
||||
|
||||
-- prosodyctl only
|
||||
function startup.prosodyctl()
|
||||
prosody.process_type = "prosodyctl";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue