Change default VPN service from Mullvad to ProtonVPN

This commit is contained in:
Roger Gonzalez 2024-12-23 09:17:56 -03:00
parent 33b318b204
commit 001d4b0bb9
Signed by: rogs
GPG Key ID: C7ECE9C6C36EC2E6
2 changed files with 4 additions and 4 deletions

View File

@ -308,8 +308,8 @@ read -p "Do you want to configure a VPN? (Y/n) [Default = y]: " setup_vpn
setup_vpn=${setup_vpn:-"y"}
if [ "$setup_vpn" == "y" ]; then
read -p "What's your VPN service? (with spaces) [mullvad]: " vpn_service
vpn_service=${vpn_service:-"mullvad"}
read -p "What's your VPN service? (with spaces) [protonvpn]: " vpn_service
vpn_service=${vpn_service:-"protonvpn"}
echo -e "\nYou should read $vpn_service's documentation in case it has different configurations for username and password."
echo "The documentation for $vpn_service is here: https://github.com/qdm12/gluetun-wiki/blob/main/setup/providers/${vpn_service// /-}.md"

View File

@ -174,8 +174,8 @@ read -p "Do you want to configure a VPN? (Y/n) [Default = y]: " setup_vpn
setup_vpn=${setup_vpn:-"y"}
if [ "$setup_vpn" == "y" ]; then
read -p "What's your VPN service? (with spaces) [mullvad]: " vpn_service
vpn_service=${vpn_service:-"mullvad"}
read -p "What's your VPN service? (with spaces) [protonvpn]: " vpn_service
vpn_service=${vpn_service:-"protonvpn"}
echo -e "\nYou should read $vpn_service's documentation in case it has different configurations for username and password."
echo "The documentation for $vpn_service is here: https://github.com/qdm12/gluetun-wiki/blob/main/setup/providers/${vpn_service// /-}.md"