mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
prosodyctl: Use prosodyctl_timeout option if it exists in the config
This commit is contained in:
parent
aa77e7d21a
commit
678d1273e3
1 changed files with 4 additions and 2 deletions
|
@ -164,6 +164,8 @@ local function read_password()
|
||||||
end
|
end
|
||||||
return password;
|
return password;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local prosodyctl_timeout = (config.get("*", "core", "prosodyctl_timeout") or 5) * 2;
|
||||||
-----------------------
|
-----------------------
|
||||||
local commands = {};
|
local commands = {};
|
||||||
local command = arg[1];
|
local command = arg[1];
|
||||||
|
@ -300,7 +302,7 @@ function commands.start(arg)
|
||||||
break;
|
break;
|
||||||
elseif i == 5 then
|
elseif i == 5 then
|
||||||
show_message("Still waiting...");
|
show_message("Still waiting...");
|
||||||
elseif i >= 10 then
|
elseif i >= prosodyctl_timeout then
|
||||||
show_message("Prosody is still not running. Please give it some time or check your log files for errors.");
|
show_message("Prosody is still not running. Please give it some time or check your log files for errors.");
|
||||||
return 2;
|
return 2;
|
||||||
end
|
end
|
||||||
|
@ -370,7 +372,7 @@ function commands.stop(arg)
|
||||||
break;
|
break;
|
||||||
elseif i == 5 then
|
elseif i == 5 then
|
||||||
show_message("Still waiting...");
|
show_message("Still waiting...");
|
||||||
elseif i >= 10 then
|
elseif i >= prosodyctl_timeout then
|
||||||
show_message("Prosody is still running. Please give it some time or check your log files for errors.");
|
show_message("Prosody is still running. Please give it some time or check your log files for errors.");
|
||||||
return 2;
|
return 2;
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue