mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-02-12 11:01:52 +00:00
Fixed typo.
This commit is contained in:
parent
25c805d7ea
commit
6a5ceff0ad
2 changed files with 2 additions and 2 deletions
|
@ -450,4 +450,4 @@ if (require.main === module) { start(); }
|
||||||
|
|
||||||
// Exports
|
// Exports
|
||||||
module.exports.createAuthenticodeHandler = createAuthenticodeHandler;
|
module.exports.createAuthenticodeHandler = createAuthenticodeHandler;
|
||||||
module.exports.loadCertificates = loadCertificates;
|
module.exports.loadCertificates = loadCertificates;
|
||||||
|
|
|
@ -2896,7 +2896,7 @@ function CreateMeshCentralServer(config, args) {
|
||||||
if ((stats == null)) continue; // If this agent does not exist, skip it.
|
if ((stats == null)) continue; // If this agent does not exist, skip it.
|
||||||
|
|
||||||
// Check if we need to sign this agent, if so, check if it's already been signed
|
// Check if we need to sign this agent, if so, check if it's already been signed
|
||||||
if ((obj.meshAgentsArchitectureNumbers[archid].codesign === true) && (agentSignCertInfo != null)) {{
|
if ((obj.meshAgentsArchitectureNumbers[archid].codesign === true) && (agentSignCertInfo != null)) {
|
||||||
// Open the original agent with authenticode
|
// Open the original agent with authenticode
|
||||||
var signeedagentpath = obj.path.join(serverSignedAgentsPath, obj.meshAgentsArchitectureNumbers[archid].localname);
|
var signeedagentpath = obj.path.join(serverSignedAgentsPath, obj.meshAgentsArchitectureNumbers[archid].localname);
|
||||||
const originalAgent = require('./authenticode.js').createAuthenticodeHandler(agentpath);
|
const originalAgent = require('./authenticode.js').createAuthenticodeHandler(agentpath);
|
||||||
|
|
Loading…
Reference in a new issue