From befe04dcd3276c0c51bc9d79e4d327ed5dceb3c0 Mon Sep 17 00:00:00 2001 From: euer Date: Sun, 23 Dec 2012 22:37:34 +0100 Subject: //morse -> //util/morse --- sandbox/roboctl/index.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 sandbox/roboctl/index.js (limited to 'sandbox/roboctl/index.js') diff --git a/sandbox/roboctl/index.js b/sandbox/roboctl/index.js new file mode 100644 index 00000000..ac92c969 --- /dev/null +++ b/sandbox/roboctl/index.js @@ -0,0 +1,18 @@ + +nick = /(^|\n) *Name *= *(\S*) *($|\n)/ + .exec(require('fs').readFileSync('/etc/tinc/retiolum/tinc.conf'))[2]; + +var config = { + "nick": nick + '-krebs', + "server": "irc.freenode.net", + "port": 6667, + "channel": "#tincspasm" +}; + +irc = require('./lib/irc').createClient(config); + +// TODO call back when joined +irc.connect(function () { + console.log('like a boss: ' + nick); + //irc.write(); +}); -- cgit v1.2.3