diff options
author | krebs <krebs@UTART> | 2011-05-04 11:41:00 -1100 |
---|---|---|
committer | krebs <krebs@UTART> | 2011-05-04 11:45:07 -1100 |
commit | 548e5e53d3bcfec31c1fb89d61da3405aec50924 (patch) | |
tree | 34a96f0dc93e3f9f706d2e92ea43d243180af625 /modules/retiolum/build_debian.sh | |
parent | b9ee190d96de5809419704e53551c0d2ed820818 (diff) |
update retiolum build scripts for debian/legacy
build_debian.sh: update to work with legacy (version 5) debian
install.sh: fixed python script code, removed "with" statement
Diffstat (limited to 'modules/retiolum/build_debian.sh')
-rwxr-xr-x | modules/retiolum/build_debian.sh | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/modules/retiolum/build_debian.sh b/modules/retiolum/build_debian.sh index ecec41a3..cb346b5f 100755 --- a/modules/retiolum/build_debian.sh +++ b/modules/retiolum/build_debian.sh @@ -1,16 +1,11 @@ #!/bin/bash -set -x -MYIP=10.0.7.7.55 +set -xe +MYIP=10.7.7.66 -aptitude install tinc git - - -git clone https://github.com/makefu/shack-retiolum.git - -cd shack-retiolum +apt-get install -y install tinc git curl python git-core ./install.sh `hostname` $MYIP # for autostart echo "retiolum" >> /etc/tinc/nets.boot -echo "EXTRA=\"--user=tincd --chroot\"" >> /etc/default/tinc +echo "EXTRA=\"\"" >> /etc/default/tinc |