diff options
-rwxr-xr-x | prosodyctl | 8 | ||||
-rw-r--r-- | util/startup.lua | 2 |
2 files changed, 5 insertions, 5 deletions
@@ -663,11 +663,11 @@ local command_runner = async.runner(function () local ok, ret = modulemanager.call_module_method(module, "command", arg); if ok then if type(ret) == "number" then - os.exit(ret); + os.exit(ret, true); elseif type(ret) == "string" then show_message(ret); end - os.exit(0); -- :) + os.exit(0, true); -- :) else show_message("Failed to execute command: "..error_messages[ret]); os.exit(1); -- :( @@ -745,10 +745,10 @@ local command_runner = async.runner(function () end - os.exit(0); + os.exit(0, true); end - os.exit(commands[command](arg)); + os.exit(commands[command](arg), true); end, watchers); command_runner:run(true); diff --git a/util/startup.lua b/util/startup.lua index 10ff1875..545b6ae7 100644 --- a/util/startup.lua +++ b/util/startup.lua @@ -648,7 +648,7 @@ function startup.shutdown() end function startup.exit() - os.exit(prosody.shutdown_code); + os.exit(prosody.shutdown_code, true); end -- prosodyctl only |