blob: cb346b5f1a548567c9d4733481fca472fc118517 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
set -xe
MYIP=10.7.7.66
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=\"\"" >> /etc/default/tinc
|