summaryrefslogtreecommitdiffstats
path: root/roboctl/index.js
diff options
context:
space:
mode:
authoreuer <root@euer.krebsco.de>2012-12-23 22:37:34 +0100
committereuer <root@euer.krebsco.de>2012-12-23 22:37:34 +0100
commitbefe04dcd3276c0c51bc9d79e4d327ed5dceb3c0 (patch)
tree21acf24c63d6a29d1621598f5ca07a438fa52a5d /roboctl/index.js
parent3b8a155589443ecf3012805a316421fcbd08c9ae (diff)
//morse -> //util/morse
Diffstat (limited to 'roboctl/index.js')
-rw-r--r--roboctl/index.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/roboctl/index.js b/roboctl/index.js
deleted file mode 100644
index ac92c969..00000000
--- a/roboctl/index.js
+++ /dev/null
@@ -1,18 +0,0 @@
-
-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();
-});