summaryrefslogtreecommitdiffstats
path: root/modules/retiolum/scripts/tinc_setup/write_channel.py
diff options
context:
space:
mode:
authorFelix Richter <Felix.Richter@syntax-fehler.de>2011-05-27 15:24:04 +0200
committerFelix Richter <Felix.Richter@syntax-fehler.de>2011-05-27 15:24:04 +0200
commit58695662f2d4bebe53b2b3dd9974bac44b4b9ead (patch)
tree90b404512f52a5aee42140a30daee1cfe024b4aa /modules/retiolum/scripts/tinc_setup/write_channel.py
parentce9ed19b3b6ed9b49690e1a84a94190922000abf (diff)
install.sh is now enterprise(probably)
install.sh: if no username is given, read from stdin same goes for v4 ip generate v6 address automagically rewrites all the config write_channel: now write_channel is outsourced
Diffstat (limited to 'modules/retiolum/scripts/tinc_setup/write_channel.py')
-rw-r--r--modules/retiolum/scripts/tinc_setup/write_channel.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/modules/retiolum/scripts/tinc_setup/write_channel.py b/modules/retiolum/scripts/tinc_setup/write_channel.py
new file mode 100644
index 00000000..71866a8d
--- /dev/null
+++ b/modules/retiolum/scripts/tinc_setup/write_channel.py
@@ -0,0 +1,21 @@
+#!/usr/bin/python
+import random, sys, time, socket
+
+CHANNEL = '#tincspasm'
+HOST='irc.freenode.net'
+FILE="/etc/tinc/retiolum/hosts/$myname"
+PORT=6667
+NICK= "${myname}_"+str(random.randint(23,666))
+
+sock = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
+sock.connect((HOST,PORT))
+print NICK
+sock.send("NICK %s\r\n" % NICK)
+sock.send("USER %s %s bla : %s\r\n" %(NICK,HOST,NICK))
+sock.send("JOIN %s\r\n" % CHANNEL)
+time.sleep(23)
+f = open(FILE,'r')
+a = [ sock.send("PRIVMSG %s : %s" % ( CHANNEL,line)) for line in f]
+time.sleep(5) #because irc is so lazy
+print "closing socket"
+sock.close()