summaryrefslogtreecommitdiffstats
path: root/.graveyard/roboctl/index.js
blob: ac92c969ef837abf6c39a170e3a10f13d2ecbeed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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();
});