diff options
author | Felix Richter <Felix.Richter@syntax-fehler.de> | 2011-05-27 13:53:14 +0200 |
---|---|---|
committer | Felix Richter <Felix.Richter@syntax-fehler.de> | 2011-05-27 13:53:14 +0200 |
commit | ce9ed19b3b6ed9b49690e1a84a94190922000abf (patch) | |
tree | fdf01a81bcb9e1f4c5c5c78171cdcb54d7367810 /modules/retiolum/scripts/tinc_setup/build_debian.sh | |
parent | eaca1684da22a3560e7f32da9f08e7549e74600e (diff) | |
parent | a6563e5a9c554aa5d08c11f645815fb25deb8bcd (diff) |
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'modules/retiolum/scripts/tinc_setup/build_debian.sh')
-rwxr-xr-x | modules/retiolum/scripts/tinc_setup/build_debian.sh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/modules/retiolum/scripts/tinc_setup/build_debian.sh b/modules/retiolum/scripts/tinc_setup/build_debian.sh new file mode 100755 index 00000000..52e61390 --- /dev/null +++ b/modules/retiolum/scripts/tinc_setup/build_debian.sh @@ -0,0 +1,32 @@ +#!/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 |