diff options
author | Felix Richter <Felix.Richter@syntax-fehler.de> | 2011-05-10 21:05:33 +0200 |
---|---|---|
committer | Felix Richter <Felix.Richter@syntax-fehler.de> | 2011-05-10 21:05:33 +0200 |
commit | b54e30f1d4b37f9b01be4434d6b03e6301c46e14 (patch) | |
tree | e9cb9d93cdfa86d062e3990a5c50c0b19510d052 /hosts/.scripts/build_debian.sh | |
parent | 517f4d882850f2ca1a862a4e82d716234fe6acae (diff) |
migrate to new repo layout
README: added new clean install script description
build_debian.sh: updated build_debian script (might still be broken)
install.sh: updated script to work with new layout (untested)
Diffstat (limited to 'hosts/.scripts/build_debian.sh')
-rwxr-xr-x | hosts/.scripts/build_debian.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/hosts/.scripts/build_debian.sh b/hosts/.scripts/build_debian.sh new file mode 100755 index 00000000..d8fcec2f --- /dev/null +++ b/hosts/.scripts/build_debian.sh @@ -0,0 +1,18 @@ +#!/bin/bash +set -x +MYIP=10.0.7.7.55 + +apt-get install tinc git curl python + +git clone https://github.com/makefu/shack-retiolum.git + +cd shack-retiolum + +./install.sh `hostname` $MYIP +cd .. +rm shack-retiolum +# 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 |