Last active
February 9, 2017 10:01
-
-
Save marc-hanheide/b99e1a1d729818b8f2b4f7ea620605e8 to your computer and use it in GitHub Desktop.
Install VPN on our turtlebot
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
| #!/bin/bash | |
| sudo apt-get update | |
| sudo apt-get -y install openvpn | |
| cd ~ | |
| wget https://gist.github.com/marc-hanheide/21ec39c7403983f23fa13175c7ecb6fb/raw/7a170d0da13ec71fc7bad2c4778c6904e92dcf8c/openvpn-server.tgz | |
| cd /etc | |
| sudo tar xf ~/openvpn-server.tgz | |
| sleep 2 | |
| sudo service openvpn restart | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment