1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

First version with Intel AMT Manager module.

This commit is contained in:
Ylian Saint-Hilaire 2020-10-06 19:47:28 -07:00
parent b79e43fea9
commit 3894b8ba10
63 changed files with 388 additions and 141 deletions

View file

@ -34,6 +34,7 @@ function CreateMeshCentralServer(config, args) {
obj.amtEventHandler = null;
obj.pluginHandler = null;
obj.amtScanner = null;
obj.amtManager = null;
obj.meshScanner = null;
obj.letsencrypt = null;
obj.eventsDispatch = {};
@ -1336,6 +1337,11 @@ function CreateMeshCentralServer(config, args) {
obj.meshScanner = require('./meshscanner.js').CreateMeshScanner(obj).start();
}
// Setup the Intel AMT manager
if ((obj.args.amtmanager == true) || (typeof obj.args.amtmanager == 'object')) {
obj.amtManager = require('./amtmanager.js').CreateAmtManager(obj);
}
// Setup and start the MPS server
if ((obj.args.lanonly != true) && (obj.args.mpsport !== 0)) {
obj.mpsserver = require('./mpsserver.js').CreateMpsServer(obj, obj.db, obj.args, obj.certificates);