created script that updated pia configs. also created a parent script that calls all provider specific scripts

This commit is contained in:
Kristian Haugene
2016-09-02 22:54:30 +02:00
parent 31b66f3d35
commit a52fe2edbd
3 changed files with 38 additions and 1 deletions

24
openvpn/pia/updateConfigs.sh Executable file
View File

@@ -0,0 +1,24 @@
#!/bin/bash
set -e
# If the script is called from elsewhere
cd "${0%/*}"
# Delete everything (not this script though)
find . ! -name '*.sh' -delete
# Get updated configuration zip
curl -kL https://www.privateinternetaccess.com/openvpn/openvpn.zip -o openvpn.zip \
&& unzip -j openvpn.zip && rm openvpn.zip
# Ensure linux line endings
dos2unix *
# Update configs with correct paths
sed -i "s/ca ca\.rsa\.2048\.crt/ca \/etc\/openvpn\/pia\/ca\.rsa\.2048\.crt/" *.ovpn
sed -i "s/crl-verify crl\.rsa\.2048\.pem/crl-verify \/etc\/openvpn\/pia\/crl\.rsa\.2048\.pem/" *.ovpn
sed -i "s/auth-user-pass/auth-user-pass \/config\/openvpn-credentials.txt/" *.ovpn
# Create symlink for default.ovpn
ln -s Netherlands.ovpn default.ovpn