30 lines
1.2 KiB
Bash
Executable File
30 lines
1.2 KiB
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
# These are the possible bundles from PIA
|
|
# https://www.privateinternetaccess.com/openvpn/openvpn.zip
|
|
# https://www.privateinternetaccess.com/openvpn/openvpn-strong.zip
|
|
# https://www.privateinternetaccess.com/openvpn/openvpn-tcp.zip
|
|
# https://www.privateinternetaccess.com/openvpn/openvpn-strong-tcp.zip
|
|
|
|
baseURL="https://www.privateinternetaccess.com/openvpn"
|
|
PIA_OPENVPN_CONFIG_BUNDLE=${PIA_OPENVPN_CONFIG_BUNDLE:-"openvpn"}
|
|
|
|
if [ -z "$VPN_PROVIDER_HOME" ]; then
|
|
echo "ERROR: Need to have VPN_PROVIDER_HOME set to call this script" && exit 1
|
|
fi
|
|
|
|
# Delete all files for PIA provider, except scripts
|
|
find "$VPN_PROVIDER_HOME" -type f ! -name "*.sh" -delete
|
|
|
|
# Download and extract wanted bundle into temporary file
|
|
tmp_file=$(mktemp)
|
|
echo "Downloading OpenVPN config bundle $PIA_OPENVPN_CONFIG_BUNDLE into temporary file $tmp_file"
|
|
curl -sSL --cookie /dev/null "${baseURL}/${PIA_OPENVPN_CONFIG_BUNDLE}.zip" -o "$tmp_file"
|
|
|
|
echo "Extract OpenVPN config bundle into PIA directory $VPN_PROVIDER_HOME"
|
|
unzip -qjo "$tmp_file" -d "$VPN_PROVIDER_HOME"
|
|
|
|
# Select a random server as default.ovpn
|
|
ln -sf "$(find "$VPN_PROVIDER_HOME" -name "*.ovpn" | shuf -n 1)" "$VPN_PROVIDER_HOME"/default.ovpn |