aboutsummaryrefslogtreecommitdiffstats
path: root/prosodyctl
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-09-18 18:28:29 +0200
committerKim Alvefur <zash@zash.se>2017-09-18 18:28:29 +0200
commitd578e7d08f61171dfe97635ddcc4a119663313b9 (patch)
treebe2cc52356cecf821ed7f4cce11d2b64c6c7ca87 /prosodyctl
parente7f9f1976be8eeb8b287c42182c3fb499252fff7 (diff)
downloadprosody-d578e7d08f61171dfe97635ddcc4a119663313b9.tar.gz
prosody-d578e7d08f61171dfe97635ddcc4a119663313b9.zip
prosodyctl: cert import: Use env variable set by certbot if invoked as post-renew hook
Diffstat (limited to 'prosodyctl')
-rwxr-xr-xprosodyctl11
1 files changed, 9 insertions, 2 deletions
diff --git a/prosodyctl b/prosodyctl
index 74bb2ad8..cdcd25d9 100755
--- a/prosodyctl
+++ b/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