mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: reload: Fix detection of whether prosody is running
isrunning() returns two values (success, status) and we were only checking the first one.
This commit is contained in:
parent
f2e87307a4
commit
b3d9577ceb
1 changed files with 5 additions and 3 deletions
|
@ -515,9 +515,11 @@ function commands.reload(arg)
|
|||
return shell.shell({ "config", "reload" });
|
||||
end
|
||||
|
||||
service_command_warning("reload");
|
||||
|
||||
if not prosodyctl.isrunning() then
|
||||
local ok, running = prosodyctl.isrunning();
|
||||
if not ok then
|
||||
show_message(error_messages[running]);
|
||||
return 1;
|
||||
elseif not running then
|
||||
show_message("Prosody is not running");
|
||||
return 1;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue