diff options
author | Felix Richter <github@syntax-fehler.de> | 2011-05-10 13:42:22 +0200 |
---|---|---|
committer | Felix Richter <github@syntax-fehler.de> | 2011-05-10 13:42:22 +0200 |
commit | 3b1eb1de09b05a15770b71724cdeb57bb2f353e8 (patch) | |
tree | 2b1a9d115cf0864ad861df8cb7c95875b6028743 /install.sh | |
parent | 92f4a21a6388b2d13db369dcd8895244dbb1087e (diff) | |
parent | 2b907df0b472b00cc31e3188435e0032fad5a676 (diff) |
Merge branch 'master' of github.com:makefu/shack-retiolum
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -47,7 +47,7 @@ CHANNEL = '#tincspasm' HOST='irc.freenode.net' FILE="/etc/tinc/retiolum/hosts/$myname" PORT=6667 -NICK= "$myname"+str(random.randint(23,666)) +NICK= "$myname_"+str(random.randint(23,666)) sock = socket.socket(socket.AF_INET,socket.SOCK_STREAM) sock.connect((HOST,PORT)) @@ -56,9 +56,9 @@ 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) -with open(FILE,'r') as f: - a = [ sock.send("PRIVMSG %s : %s" % ( CHANNEL,line)) for line in f] - time.sleep(5) #because irc is so lazy +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() EOF |