summaryrefslogtreecommitdiffstats
path: root/hosts/.scripts/tinc_setup/build_debian.sh
diff options
context:
space:
mode:
authortv <tv@also>2011-05-26 21:56:46 +0200
committertv <tv@also>2011-05-26 21:56:46 +0200
commit26a655c95bc636fd7620c82bc94c506b3ca4ccc5 (patch)
tree6b27c32e7ccfd8868c2416630f7601e73c7d3a4a /hosts/.scripts/tinc_setup/build_debian.sh
parent42f2333eddbc9535c758ea1ecf2bcaa8e4af9633 (diff)
Remove cruft
Diffstat (limited to 'hosts/.scripts/tinc_setup/build_debian.sh')
-rwxr-xr-xhosts/.scripts/tinc_setup/build_debian.sh32
1 files changed, 0 insertions, 32 deletions
diff --git a/hosts/.scripts/tinc_setup/build_debian.sh b/hosts/.scripts/tinc_setup/build_debian.sh
deleted file mode 100755
index 52e61390..00000000
--- a/hosts/.scripts/tinc_setup/build_debian.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/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
-
-/etc/init.d/tinc start