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 | 3a3f45b5a15996fdf44ef5dee5d157a77873b240 (patch) | |
tree | 62038adb1b849e7ee7be8a5e39450614a48ff4a7 /hosts/.scripts/tinc_setup/build_arch.sh | |
parent | dd99d319fdbb899480a979deb276949a538d4584 (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 'hosts/.scripts/tinc_setup/build_arch.sh')
-rwxr-xr-x | hosts/.scripts/tinc_setup/build_arch.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/hosts/.scripts/tinc_setup/build_arch.sh b/hosts/.scripts/tinc_setup/build_arch.sh new file mode 100755 index 00000000..5ef5d765 --- /dev/null +++ b/hosts/.scripts/tinc_setup/build_arch.sh @@ -0,0 +1,14 @@ +#!/bin/sh +set -e +sudo pacman -S openssl gcc lzo +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 +cd .. + +echo "overwriting python to python2" +sed 's/\/usr\/bin\/python/\/usr\/bin\/python2/g' install.sh >install2.sh +mv install2.sh install.sh + |