mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
prosodyctl: Use all enabled hosts if no hostnames passed to cert import
This commit is contained in:
parent
6ab32342b2
commit
b70edb66cf
1 changed files with 8 additions and 1 deletions
|
@ -870,8 +870,15 @@ function cert_commands.import(arg)
|
||||||
while arg[1] and prosody.hosts[ arg[1] ] do
|
while arg[1] and prosody.hosts[ arg[1] ] do
|
||||||
table.insert(hostnames, table.remove(arg, 1));
|
table.insert(hostnames, table.remove(arg, 1));
|
||||||
end
|
end
|
||||||
|
if hostnames[1] == nil then
|
||||||
|
for host in pairs(prosody.hosts) do
|
||||||
|
if host ~= "*" and config.get(host, "enabled") ~= false then
|
||||||
|
table.insert(hostnames, host);
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
if not arg[1] or arg[1] == "--help" then -- Probably forgot the path
|
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);
|
"Copies certificates to "..cert_basedir);
|
||||||
return 1;
|
return 1;
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue