mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Add 'check' to command listing (fixes #1622)
Along with infrastructure for the other commands that live in external modules.
This commit is contained in:
parent
005e931005
commit
5d8bae3294
1 changed files with 10 additions and 0 deletions
10
prosodyctl
10
prosodyctl
|
@ -662,7 +662,14 @@ local command_runner = async.runner(function ()
|
|||
"start"; "stop"; "restart"; "reload"; "status";
|
||||
"Informative:",
|
||||
"about",
|
||||
"check",
|
||||
};
|
||||
-- These live in util.prosodyctl.$command so we have their short help here.
|
||||
local external_commands = {
|
||||
cert = "Manage certificates",
|
||||
check = "Perform basic checks on your Prosody installation",
|
||||
shell = "Lorem ipsum dolor sit amet", -- FIXME
|
||||
}
|
||||
|
||||
local done = {};
|
||||
|
||||
|
@ -671,6 +678,9 @@ local command_runner = async.runner(function ()
|
|||
if command_func then
|
||||
command_func{ "--help" };
|
||||
done[command_name] = true;
|
||||
elseif external_commands[command_name] then
|
||||
show_usage(command_name, external_commands[command_name]);
|
||||
done[command_name] = true;
|
||||
else
|
||||
print""
|
||||
print(command_name);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue