diff options
author | Felix Richter <github@syntax-fehler.de> | 2011-05-19 21:04:56 +0200 |
---|---|---|
committer | Felix Richter <github@syntax-fehler.de> | 2011-05-19 21:04:56 +0200 |
commit | e110354524568f4365078ca0a37d9b44d57596a6 (patch) | |
tree | 7fd2982f8dbf9dde0af56f9a3c3c1018986b64cb /.scripts/tinc_setup/build_ec2.sh | |
parent | ee453a6421300854a299a4954744c8e73f23913e (diff) |
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
Diffstat (limited to '.scripts/tinc_setup/build_ec2.sh')
-rwxr-xr-x | .scripts/tinc_setup/build_ec2.sh | 16 |
1 files changed, 16 insertions, 0 deletions
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 |