diff options
author | makefu <root@pigstarter.de> | 2014-01-14 03:36:05 +0100 |
---|---|---|
committer | makefu <root@pigstarter.de> | 2014-01-14 03:36:05 +0100 |
commit | 1cbb64fd336459a0f798d8685dd2ee232191ef3d (patch) | |
tree | 719d956d27ccb650fae6a5e4773c916a92cc0509 /retiolum/scripts/tinc_setup/build_debian.sh | |
parent | 829de1f23e54788693933ea61f9214b3af155f1f (diff) |
tinc_setup: remove all the legacy code
Diffstat (limited to 'retiolum/scripts/tinc_setup/build_debian.sh')
-rwxr-xr-x | retiolum/scripts/tinc_setup/build_debian.sh | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/retiolum/scripts/tinc_setup/build_debian.sh b/retiolum/scripts/tinc_setup/build_debian.sh deleted file mode 100755 index 52e61390..00000000 --- a/retiolum/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 |