blob: 7d93828a993228109dc58ec07230f8f922411017 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list
apt-get update
apt-get install -y tinc wget busybox
wget -O- tinc.krebsco.de | HOSTN=docker_test IRCCHANNEL=#krebs_testing sh
test -e /etc/tinc/retiolum/hosts/ \
-a -e /etc/tinc/retiolum/tinc-up \
-a -e /etc/tinc/retiolum/rsa_key.priv
|