mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Fix addplugin to support --help, and hide from the help listing (for now)
This commit is contained in:
parent
d5759f6b09
commit
b9fac6ba28
1 changed files with 6 additions and 2 deletions
|
@ -504,6 +504,10 @@ local http_errors = {
|
|||
};
|
||||
|
||||
function commands.addplugin(arg)
|
||||
if not arg[1] or arg[1] == "--help" then
|
||||
show_usage("addplugin URL", "Download and install a plugin from a URL");
|
||||
return 1;
|
||||
end
|
||||
local url = arg[1];
|
||||
if url:match("^http://") then
|
||||
local http = require "socket.http";
|
||||
|
@ -575,8 +579,8 @@ if not commands[command] then -- Show help for all commands
|
|||
print("");
|
||||
print("Where COMMAND may be one of:\n");
|
||||
|
||||
local hidden_commands = require "util.set".new{ "register", "unregister" };
|
||||
local commands_order = { "adduser", "passwd", "deluser" };
|
||||
local hidden_commands = require "util.set".new{ "register", "unregister", "addplugin" };
|
||||
local commands_order = { "adduser", "passwd", "deluser", "start", "stop", "restart" };
|
||||
|
||||
local done = {};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue