From 3a3f45b5a15996fdf44ef5dee5d157a77873b240 Mon Sep 17 00:00:00 2001 From: Felix Richter Date: Thu, 19 May 2011 21:04:56 +0200 Subject: 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 --- hosts/.scripts/tinc_setup/build_debian.sh | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 hosts/.scripts/tinc_setup/build_debian.sh (limited to 'hosts/.scripts/tinc_setup/build_debian.sh') diff --git a/hosts/.scripts/tinc_setup/build_debian.sh b/hosts/.scripts/tinc_setup/build_debian.sh new file mode 100755 index 00000000..ddc63aed --- /dev/null +++ b/hosts/.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 -- cgit v1.2.3