From e110354524568f4365078ca0a37d9b44d57596a6 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 --- .scripts/tinc_setup/build_ec2.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 .scripts/tinc_setup/build_ec2.sh (limited to '.scripts/tinc_setup/build_ec2.sh') diff --git a/.scripts/tinc_setup/build_ec2.sh b/.scripts/tinc_setup/build_ec2.sh new file mode 100755 index 00000000..79f2af28 --- /dev/null +++ b/.scripts/tinc_setup/build_ec2.sh @@ -0,0 +1,16 @@ +#!/bin/sh +set -e +sudo yum install -y gcc openssl-devel +mkdir build +cd build +curl http://www.oberhumer.com/opensource/lzo/download/lzo-2.04.tar.gz | tar xz +cd lzo-2.04 +./configure --prefix=/usr +make +sudo make install +cd .. +curl http://www.tinc-vpn.org/packages/tinc-1.0.13.tar.gz | tar xz +cd tinc-1.0.13 +./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var +make +sudo make install -- cgit v1.2.3