aboutsummaryrefslogtreecommitdiffstats
path: root/prosodyctl
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-05-03 17:24:35 +0100
committerMatthew Wild <mwild1@gmail.com>2009-05-03 17:24:35 +0100
commitcb501db20ec8049ac1f95716b1ee5da94020085e (patch)
tree07db1cf866f0604f04c51220b73bc8f4da87407b /prosodyctl
parent690c501c98bf29eea834a732100f5665b66fb43f (diff)
downloadprosody-cb501db20ec8049ac1f95716b1ee5da94020085e.tar.gz
prosody-cb501db20ec8049ac1f95716b1ee5da94020085e.zip
prosodyctl: Hide ejabberd compatibility commands from command listing
Diffstat (limited to 'prosodyctl')
-rwxr-xr-xprosodyctl25
1 files changed, 15 insertions, 10 deletions
diff --git a/prosodyctl b/prosodyctl
index 098f7475..7998d033 100755
--- a/prosodyctl
+++ b/prosodyctl
@@ -319,10 +319,12 @@ end
function commands.register(arg)
local user, host, password = unpack(arg);
if (not (user and host)) or arg[1] == "--help" then
- if not user and user ~= "--help" then
- show_message [[No username specified]]
- elseif not host then
- show_message [[Please specify which host you want to register the user on]];
+ if user ~= "--help" then
+ if not user then
+ show_message [[No username specified]]
+ elseif not host then
+ show_message [[Please specify which host you want to register the user on]];
+ end
end
show_usage("register USER HOST [PASSWORD]", "Register a user on the server, with the given password");
return 1;
@@ -346,12 +348,14 @@ end
function commands.unregister(arg)
local user, host = unpack(arg);
if (not (user and host)) or arg[1] == "--help" then
- if not user then
- show_message [[No username specified]]
- elseif not host then
- show_message [[Please specify which host you want to unregister the user from]];
+ if user ~= "--help" then
+ if not user then
+ show_message [[No username specified]]
+ elseif not host then
+ show_message [[Please specify which host you want to unregister the user from]];
+ end
end
- show_usage("register USER HOST [PASSWORD]", "Permanently remove a user account from the server");
+ show_usage("unregister USER HOST [PASSWORD]", "Permanently remove a user account from the server");
return 1;
end
@@ -378,6 +382,7 @@ 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 done = {};
@@ -392,7 +397,7 @@ if not commands[command] then -- Show help for all commands
end
for command_name, command in pairs(commands) do
- if not done[command_name] then
+ if not done[command_name] and not hidden_commands:contains(command_name) then
command{ "--help" };
print""
done[command_name] = true;