mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Don't display message about failing to start Prosody is daemonizing is disabled (if daemonizing is disabled then Prosody is stopped by the time control returns to prosodyctl, which then can't see Prosody running)
This commit is contained in:
parent
08284a586e
commit
dc66599615
1 changed files with 15 additions and 13 deletions
28
prosodyctl
28
prosodyctl
|
@ -341,21 +341,23 @@ function commands.start(arg)
|
|||
|
||||
local ok, ret = prosodyctl.start();
|
||||
if ok then
|
||||
local i=1;
|
||||
while true do
|
||||
local ok, running = prosodyctl.isrunning();
|
||||
if ok and running then
|
||||
break;
|
||||
elseif i == 5 then
|
||||
show_message("Still waiting...");
|
||||
elseif i >= prosodyctl_timeout then
|
||||
show_message("Prosody is still not running. Please give it some time or check your log files for errors.");
|
||||
return 2;
|
||||
if config.get("*", "core", "daemonize") ~= false then
|
||||
local i=1;
|
||||
while true do
|
||||
local ok, running = prosodyctl.isrunning();
|
||||
if ok and running then
|
||||
break;
|
||||
elseif i == 5 then
|
||||
show_message("Still waiting...");
|
||||
elseif i >= prosodyctl_timeout then
|
||||
show_message("Prosody is still not running. Please give it some time or check your log files for errors.");
|
||||
return 2;
|
||||
end
|
||||
socket.sleep(0.5);
|
||||
i = i + 1;
|
||||
end
|
||||
socket.sleep(0.5);
|
||||
i = i + 1;
|
||||
show_message("Started");
|
||||
end
|
||||
show_message("Started");
|
||||
return 0;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue