From e4414211310ba5f2b22ab0f934f90f2f226862b9 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Thu, 2 Dec 2021 06:27:38 -0800 Subject: [PATCH] Version 0.9.56 --- letsencrypt.js | 2 +- meshbot.js | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/letsencrypt.js b/letsencrypt.js index 993343ac..a4a8c826 100644 --- a/letsencrypt.js +++ b/letsencrypt.js @@ -1,5 +1,5 @@ /** -* @description MeshCentral letsEncrypt module, uses GreenLock to do all the work. +* @description MeshCentral letsEncrypt module, uses ACME-Client to do all the work. * @author Ylian Saint-Hilaire * @copyright Intel Corporation 2018-2021 * @license Apache-2.0 diff --git a/meshbot.js b/meshbot.js index c1d5b68e..3c6ff4c9 100644 --- a/meshbot.js +++ b/meshbot.js @@ -1,5 +1,13 @@ #!/usr/bin/env node +/** +* @description MeshCentral bot sample code +* @author Ylian Saint-Hilaire +* @copyright Intel Corporation 2018-2021 +* @license Apache-2.0 +* @version v0.0.1 +*/ + // Make sure we have the dependency modules try { require('minimist'); } catch (ex) { console.log('Missing module "minimist", type "npm install minimist" to install it.'); return; } try { require('ws'); } catch (ex) { console.log('Missing module "ws", type "npm install ws" to install it.'); return; }