mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-02-12 11:01:52 +00:00
Bugfix: reference to undefined object
This commit is contained in:
parent
69d2dc7e12
commit
25f0d0ab8e
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ module.exports.CertificateOperations = function (parent) {
|
||||||
} else if ((typeof acmconfig.certfiles == 'object') && (typeof acmconfig.keyfile == 'string')) {
|
} else if ((typeof acmconfig.certfiles == 'object') && (typeof acmconfig.keyfile == 'string')) {
|
||||||
// PEM format, certfiles and keyfile
|
// PEM format, certfiles and keyfile
|
||||||
r = { certs: [], keys: [] };
|
r = { certs: [], keys: [] };
|
||||||
for (var k in acmconfig.certfiles) { r.certs.push(obj.pki.certificateFromPem(obj.fs.readFileSync(obj.common.joinPath(obj.parent.datapath, acmconfig.certfiles[k])))); }
|
for (var k in acmconfig.certfiles) { r.certs.push(obj.pki.certificateFromPem(obj.fs.readFileSync(parent.common.joinPath(obj.parent.datapath, acmconfig.certfiles[k])))); }
|
||||||
r.keys.push(obj.pki.privateKeyFromPem(obj.fs.readFileSync(obj.parent.joinPath(obj.parent.datapath, acmconfig.keyfile))));
|
r.keys.push(obj.pki.privateKeyFromPem(obj.fs.readFileSync(obj.parent.joinPath(obj.parent.datapath, acmconfig.keyfile))));
|
||||||
if ((r.certs.length < 2) || (r.keys.length != 1)) continue;
|
if ((r.certs.length < 2) || (r.keys.length != 1)) continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue