use .certs instead of .pems
This commit is contained in:
parent
7c6c509313
commit
d7ea101ae9
|
@ -258,8 +258,10 @@ module.exports.create = function (le) {
|
|||
return le.acme.getCertificateAsync(certReq).then(utils.attachCertInfo);
|
||||
});
|
||||
}).then(function (results) {
|
||||
// { cert, chain, privkey }
|
||||
// { cert, chain, privkey /*TODO, subject, altnames, issuedAt, expiresAt */ }
|
||||
|
||||
args.certs = results;
|
||||
// args.pems is deprecated
|
||||
args.pems = results;
|
||||
return le.store.certificates.setAsync(args).then(function () {
|
||||
return results;
|
||||
|
|
Loading…
Reference in New Issue