diff options
author | Felix Richter <Felix.Richter@syntax-fehler.de> | 2011-05-05 00:27:40 +0200 |
---|---|---|
committer | Felix Richter <Felix.Richter@syntax-fehler.de> | 2011-05-05 00:31:29 +0200 |
commit | f6a7e5467c2a4c30b095b5c1c80b6cb062abbcd3 (patch) | |
tree | 9bd3b7f88003643a61bd141cc4992b96b28b247e /retiolum/hosts/build_debian_clean.sh | |
parent | 5b1518dffad685e81706f692588146827d703ac3 (diff) |
updated to work with legacy os
build_debian.sh: updated to work with legacy
build_debian_clean.sh: debian build script with manual compiling
install.sh: updated python to work with legacy software
Diffstat (limited to 'retiolum/hosts/build_debian_clean.sh')
-rwxr-xr-x | retiolum/hosts/build_debian_clean.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/retiolum/hosts/build_debian_clean.sh b/retiolum/hosts/build_debian_clean.sh new file mode 100755 index 00000000..a7332f4e --- /dev/null +++ b/retiolum/hosts/build_debian_clean.sh @@ -0,0 +1,31 @@ +#!/bin/bash +set -xe +MYIP=10.0.7.7.55 + +apt-get install tinc git curl gcc gcc-dev build-essential libssl-dev python + +git clone https://github.com/makefu/shack-retiolum.git + +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 +cd ../.. + +cd shack-retiolum +./install.sh `hostname` $MYIP + +rm shack-retiolum +# for autostart +echo "retiolum" >> /etc/tinc/nets.boot +echo "EXTRA=\"--user=tincd --chroot\"" >> /etc/default/tinc |