blob: d8fcec2f20e6211b144713458251d410bfd66a66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
|