mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Only demand a hostname argument to cert commands other than import
This commit is contained in:
parent
b70edb66cf
commit
e7f9f1976b
1 changed files with 9 additions and 7 deletions
16
prosodyctl
16
prosodyctl
|
@ -939,13 +939,15 @@ function commands.cert(arg)
|
|||
end
|
||||
local subcmd = table.remove(arg, 1);
|
||||
if type(cert_commands[subcmd]) == "function" then
|
||||
if not arg[1] then
|
||||
show_message"You need to supply at least one hostname"
|
||||
arg = { "--help" };
|
||||
end
|
||||
if arg[1] ~= "--help" and not hosts[arg[1]] then
|
||||
show_message(error_messages["no-such-host"]);
|
||||
return 1;
|
||||
if subcmd ~= "import" then -- hostnames are optional for import
|
||||
if not arg[1] then
|
||||
show_message"You need to supply at least one hostname"
|
||||
arg = { "--help" };
|
||||
end
|
||||
if arg[1] ~= "--help" and not hosts[arg[1]] then
|
||||
show_message(error_messages["no-such-host"]);
|
||||
return 1;
|
||||
end
|
||||
end
|
||||
return cert_commands[subcmd](arg);
|
||||
elseif subcmd == "check" then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue