diff options
author | euer <root@euer.krebsco.de> | 2012-12-23 22:37:34 +0100 |
---|---|---|
committer | euer <root@euer.krebsco.de> | 2012-12-23 22:37:34 +0100 |
commit | befe04dcd3276c0c51bc9d79e4d327ed5dceb3c0 (patch) | |
tree | 21acf24c63d6a29d1621598f5ca07a438fa52a5d /sandbox/roboctl/index.js | |
parent | 3b8a155589443ecf3012805a316421fcbd08c9ae (diff) |
//morse -> //util/morse
Diffstat (limited to 'sandbox/roboctl/index.js')
-rw-r--r-- | sandbox/roboctl/index.js | 18 |
1 files changed, 18 insertions, 0 deletions
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(); +}); |