mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: cert import: Use env variable set by certbot if invoked as post-renew hook
This commit is contained in:
parent
e7f9f1976b
commit
d578e7d08f
1 changed files with 9 additions and 2 deletions
11
prosodyctl
11
prosodyctl
|
@ -871,10 +871,17 @@ function cert_commands.import(arg)
|
|||
table.insert(hostnames, table.remove(arg, 1));
|
||||
end
|
||||
if hostnames[1] == nil then
|
||||
for host in pairs(prosody.hosts) do
|
||||
if host ~= "*" and config.get(host, "enabled") ~= false 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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue