mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
Merge 0.10->trunk
This commit is contained in:
commit
43e5d4df29
3 changed files with 31 additions and 16 deletions
32
prosodyctl
32
prosodyctl
|
@ -868,8 +868,22 @@ function cert_commands.import(arg)
|
|||
while arg[1] and prosody.hosts[ arg[1] ] do
|
||||
table.insert(hostnames, table.remove(arg, 1));
|
||||
end
|
||||
if hostnames[1] == nil then
|
||||
local domains = os.getenv"RENEWED_DOMAINS"; -- Set if invoked via certbot
|
||||
if domains then
|
||||
for host in domains:gmatch("%S+") do
|
||||
table.insert(hostnames, host);
|
||||
end
|
||||
else
|
||||
for host in pairs(prosody.hosts) do
|
||||
if host ~= "*" and config.get(host, "enabled") ~= false then
|
||||
table.insert(hostnames, host);
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
if not arg[1] or arg[1] == "--help" then -- Probably forgot the path
|
||||
show_usage("cert import HOSTNAME [HOSTNAME+] /path/to/certs [/other/paths/]+",
|
||||
show_usage("cert import [HOSTNAME+] /path/to/certs [/other/paths/]+",
|
||||
"Copies certificates to "..cert_basedir);
|
||||
return 1;
|
||||
end
|
||||
|
@ -930,13 +944,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