This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # install tinc | |
| apt-get update && echo "===> update deps" && | |
| apt-get install -y make libssl-dev zlib1g-dev liblzo2-dev libreadline-dev libncurses5-dev && echo "===> got deps" && | |
| curl http://www.tinc-vpn.org/packages/tinc-1.1pre11.tar.gz | tar xzvf - && echo "===> got tinc src" && | |
| cd tinc-1.1pre11 && | |
| ./configure && echo "===> configured tinc" && | |
| make && | |
| make install && echo "===> installed tinc" && | |
| tinc --version # tinc version 1.1pre11 (built Nov 12 2015 16:25:28, protocol 17.4) |