summaryrefslogtreecommitdiffstats
path: root/hosts
diff options
context:
space:
mode:
authorFelix Richter <github@syntax-fehler.de>2011-05-26 13:59:47 +0200
committerFelix Richter <github@syntax-fehler.de>2011-05-26 13:59:47 +0200
commitb3b1187e2d1cb615405851174f044882346a6815 (patch)
tree5643477f6dec2717bed6dacd8ba07e6c257f582d /hosts
parent508bcf9c67cdc6bb42a0bef4655c2c1a27d497be (diff)
fixed borken parse script
wrong behaviour when we do not know the internal ip of a node for some reason. fixed autostart script to modprobe tun before continuning
Diffstat (limited to 'hosts')
-rwxr-xr-xhosts/.scripts/adv_graphgen/parse.py4
-rwxr-xr-x[-rw-r--r--]hosts/.scripts/autostart/tinc2
2 files changed, 5 insertions, 1 deletions
diff --git a/hosts/.scripts/adv_graphgen/parse.py b/hosts/.scripts/adv_graphgen/parse.py
index b0534d93..04b42c33 100755
--- a/hosts/.scripts/adv_graphgen/parse.py
+++ b/hosts/.scripts/adv_graphgen/parse.py
@@ -1,4 +1,5 @@
#!/usr/bin/python2
+# -*- coding: utf8 -*-
import sys
""" TODO: Refactoring needed to pull the edges out of the node structures again,
@@ -44,7 +45,8 @@ def write_node(k,v):
node += "external:"+v['external-ip']+":"+v['external-port']+"\\l"
if v.has_key('num_conns'):
node += "Num Connects:"+str(v['num_conns'])+"\\l"
- node += "internal:"+v['internal-ip']+"\\l\""
+
+ node += "internal:"+v.get('internal-ip','¯\\\\(°_o)/¯')+"\\l\""
if v['external-ip'] == "MYSELF":
node += ",fillcolor=steelblue1"
node += "]"
diff --git a/hosts/.scripts/autostart/tinc b/hosts/.scripts/autostart/tinc
index 06d10403..12e77d6a 100644..100755
--- a/hosts/.scripts/autostart/tinc
+++ b/hosts/.scripts/autostart/tinc
@@ -25,6 +25,8 @@ TCONF="/etc/tinc"
NETSFILE="$TCONF/nets.boot"
NETS=""
+modprobe tun
+
test -f $DAEMON || exit 0
[ -r /etc/default/tinc ] && . /etc/default/tinc