2018-03-14 15:16:55 -07:00
|
|
|
/**
|
|
|
|
* @description MeshCentral main module
|
|
|
|
* @author Ylian Saint-Hilaire
|
2019-01-03 16:22:15 -08:00
|
|
|
* @copyright Intel Corporation 2018-2019
|
2018-03-14 15:16:55 -07:00
|
|
|
* @license Apache-2.0
|
|
|
|
* @version v0.0.1
|
|
|
|
*/
|
|
|
|
|
2018-08-30 12:05:23 -07:00
|
|
|
/*jslint node: true */
|
|
|
|
/*jshint node: true */
|
|
|
|
/*jshint strict:false */
|
|
|
|
/*jshint -W097 */
|
|
|
|
/*jshint esversion: 6 */
|
|
|
|
"use strict";
|
2018-08-27 12:24:15 -07:00
|
|
|
|
2018-03-14 15:16:55 -07:00
|
|
|
// This module is only called when MeshCentral is running as a Windows service.
|
|
|
|
// In this case, we don't want to start a child process, so we launch directly without arguments.
|
|
|
|
require('./meshcentral.js').mainStart({ "launch": true });
|