From b7dffcfb291871e26eac26fa364340adf6e92040 Mon Sep 17 00:00:00 2001 From: lub Date: Sun, 15 Oct 2017 18:41:23 +0200 Subject: [PATCH] rename services to lubiland --- projects/lubiland.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/projects/lubiland.js b/projects/lubiland.js index 0fd81d0..7626b55 100644 --- a/projects/lubiland.js +++ b/projects/lubiland.js @@ -1,14 +1,14 @@ const remoteExec = require('./remoteExec.js'); -// links services and module.exports -const services = module.exports = {}; +// links lubiland and module.exports +const lubiland = module.exports = {}; -services['infrastructure'] = {}; +lubiland['infrastructure'] = {}; -services['infrastructure']['rebuild'] = {}; -services['infrastructure']['rebuild'].regex = /^([a-zA-Z0-9\-\_]*)$/; -services['infrastructure']['rebuild'].usage = ''; -services['infrastructure']['rebuild'].exec = (args) => { +lubiland['infrastructure']['rebuild'] = {}; +lubiland['infrastructure']['rebuild'].regex = /^([a-zA-Z0-9\-\_]*)$/; +lubiland['infrastructure']['rebuild'].usage = ''; +lubiland['infrastructure']['rebuild'].exec = (args) => { const container = args[1]; matrixClient.sendNotice(room.roomId, 'rebuilding container ' + container);