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);