mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: cert import: Reuse function from certmanager for locating certificates and keys
This commit is contained in:
parent
2cc651ad75
commit
296e430244
2 changed files with 6 additions and 9 deletions
14
prosodyctl
14
prosodyctl
|
@ -894,18 +894,14 @@ function cert_commands.import(arg)
|
|||
owner = config.get("*", "prosody_user") or "prosody";
|
||||
group = config.get("*", "prosody_group") or owner;
|
||||
end
|
||||
local cm = require "core.certmanager";
|
||||
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);
|
||||
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);
|
||||
local paths = cm.find_cert(dir, host);
|
||||
if paths then
|
||||
copy(paths.certificate, cert_basedir .. "/" .. host .. ".crt", nil, owner, group);
|
||||
copy(paths.key, cert_basedir .. "/" .. host .. ".key", "0377", owner, group);
|
||||
table.insert(imported, host);
|
||||
else
|
||||
-- TODO Say where we looked
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue