summaryrefslogtreecommitdiffstats
path: root/.scripts/tinc_setup/build_debian.sh
diff options
context:
space:
mode:
authorFelix Richter <github@syntax-fehler.de>2011-05-19 21:04:56 +0200
committerFelix Richter <github@syntax-fehler.de>2011-05-19 21:04:56 +0200
commite110354524568f4365078ca0a37d9b44d57596a6 (patch)
tree7fd2982f8dbf9dde0af56f9a3c3c1018986b64cb /.scripts/tinc_setup/build_debian.sh
parentee453a6421300854a299a4954744c8e73f23913e (diff)
cleaned up the script mess
README: added README files for the whole directory as well as the subdirs adv_graphgen/* : contains the graphgen files tinc_setup/* : contains the build script and the bootstrap script tinc_multicast/* : contains the multicast script
Diffstat (limited to '.scripts/tinc_setup/build_debian.sh')
-rwxr-xr-x.scripts/tinc_setup/build_debian.sh30
1 files changed, 30 insertions, 0 deletions
diff --git a/.scripts/tinc_setup/build_debian.sh b/.scripts/tinc_setup/build_debian.sh
new file mode 100755
index 00000000..ddc63aed
--- /dev/null
+++ b/.scripts/tinc_setup/build_debian.sh
@@ -0,0 +1,30 @@
+#!/bin/bash
+set -x
+if [ ! "$MYIP" ]
+then
+ MYIP=10.0.7.7.55
+fi
+if [ ! "$MYHOSTNAME" ]
+then
+ MYHOSTNAME="penis"
+fi
+
+if [ "$MYHOSTNAME" = "penis" ];
+then
+ read -n1 -p "name is penis, are u sure? [yN]"
+ if [[ "$REPLY" != [yY] ]]
+ then
+ echo "then better RTFC"
+ echo "bailing out"
+ exit 0
+ fi
+fi
+apt-get install tinc git curl python
+
+./install.sh "$MYHOSTNAME" "$MYIP"
+
+# for autostart
+sed -i '/retiolum/d' /etc/tinc/nets.boot
+echo "retiolum" >> /etc/tinc/nets.boot
+sed -i '/EXTRA/d' /etc/tinc/nets.boot
+echo "EXTRA=\"\"" >> /etc/default/tinc