diff options
author | Kim Alvefur <zash@zash.se> | 2017-04-22 19:11:26 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-04-22 19:11:26 +0200 |
commit | 3b0dfa75d6af5f1e54737a0a6c6ab1440f273688 (patch) | |
tree | d99bb95c4aa57db5793669d51dfdbcc5d0dffa42 /prosodyctl | |
parent | e8c521be3618820755fce4c9ef0dbd25e7dab17c (diff) | |
download | prosody-3b0dfa75d6af5f1e54737a0a6c6ab1440f273688.tar.gz prosody-3b0dfa75d6af5f1e54737a0a6c6ab1440f273688.zip |
prosodyctl: Delay reporting of successful certificate imports until all done
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -873,18 +873,19 @@ function cert_commands.import(arg) owner = config.get("*", "prosody_user") or "prosody"; group = config.get("*", "prosody_group") or owner; end + local imported = {}; for _, host in ipairs(hostnames) do for _, dir in ipairs(arg) do if lfs.attributes(dir .. "/" .. host .. "/fullchain.pem") and lfs.attributes(dir .. "/" .. host .. "/privkey.pem") then copy(dir .. "/" .. host .. "/fullchain.pem", cert_basedir .. "/" .. host .. ".crt", nil, owner, group); copy(dir .. "/" .. host .. "/privkey.pem", cert_basedir .. "/" .. host .. ".key", "0377", owner, group); - show_message("Imported certificate and key for "..host); + table.insert(imported, host); elseif lfs.attributes(dir .. "/" .. host .. ".crt") and lfs.attributes(dir .. "/" .. host .. ".key") then copy(dir .. "/" .. host .. ".crt", cert_basedir .. "/" .. host .. ".crt", nil, owner, group); copy(dir .. "/" .. host .. ".key", cert_basedir .. "/" .. host .. ".key", "0377", owner, group); - show_message("Imported certificate and key for "..host); + table.insert(imported, host); else show_warning("No certificate for host "..host.." found :("); end @@ -893,6 +894,9 @@ function cert_commands.import(arg) -- Private key matches public key in certificate end end + if imported[1] then + show_message("Imported certificate and key for hosts "..table.concat(imported, ", ")); + end end function commands.cert(arg) |