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

Fixed dependencies.

This commit is contained in:
Ylian Saint-Hilaire 2021-02-21 11:14:29 -08:00
parent 6e1ba774aa
commit 36f139f0b0
2 changed files with 4 additions and 16 deletions

View file

@ -126,7 +126,7 @@ function CreateMeshCentralServer(config, args) {
obj.service = null;
obj.servicelog = null;
if (obj.platform == 'win32') {
var nodewindows = require('node-windows');
var nodewindows = require('node-windows@0.1.14');
obj.service = nodewindows.Service;
var eventlogger = nodewindows.EventLogger;
obj.servicelog = new eventlogger('MeshCentral');
@ -651,7 +651,7 @@ function CreateMeshCentralServer(config, args) {
// Look for easy command line instructions and do them here.
obj.StartEx = function () {
var i;
//var wincmd = require('node-windows');
//var wincmd = require('node-windows@0.1.14');
//wincmd.list(function (svc) { console.log(svc); }, true);
// Setup syslog support
@ -3153,7 +3153,7 @@ function mainStart() {
// Install any missing modules and launch the server
InstallModules(modules, function () {
if (require('os').platform() == 'win32') { try { require('node-windows'); } catch (ex) { console.log("Module node-windows can't be loaded. Restart MeshCentral."); process.exit(); return; } }
if (require('os').platform() == 'win32') { try { require('node-windows@0.1.14'); } catch (ex) { console.log("Module node-windows can't be loaded. Restart MeshCentral."); process.exit(); return; } }
meshserver = CreateMeshCentralServer(config, args);
meshserver.Start();
});