summaryrefslogtreecommitdiffstats
path: root/retiolum/hosts/install.sh
diff options
context:
space:
mode:
authorFelix Richter <Felix.Richter@syntax-fehler.de>2011-05-05 00:27:40 +0200
committerFelix Richter <Felix.Richter@syntax-fehler.de>2011-05-05 00:31:29 +0200
commitf6a7e5467c2a4c30b095b5c1c80b6cb062abbcd3 (patch)
tree9bd3b7f88003643a61bd141cc4992b96b28b247e /retiolum/hosts/install.sh
parent5b1518dffad685e81706f692588146827d703ac3 (diff)
updated to work with legacy os
build_debian.sh: updated to work with legacy build_debian_clean.sh: debian build script with manual compiling install.sh: updated python to work with legacy software
Diffstat (limited to 'retiolum/hosts/install.sh')
-rwxr-xr-xretiolum/hosts/install.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/retiolum/hosts/install.sh b/retiolum/hosts/install.sh
index 5fa1d4a5..af461a30 100755
--- a/retiolum/hosts/install.sh
+++ b/retiolum/hosts/install.sh
@@ -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