diff options
author | Roger Gonzalez <roger@rogs.me> | 2023-01-16 11:35:35 -0300 |
---|---|---|
committer | Roger Gonzalez <roger@rogs.me> | 2023-01-16 11:35:35 -0300 |
commit | 64564f5889820d041495a6e2c778f027a8233447 (patch) | |
tree | 5319289791c36641cd28ead95ad67ef50351f55b /install.sh | |
parent | f096c2e817e40f711172177fb9877c7cfa91f386 (diff) |
Added an extra echo to space the vpn password field
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -124,6 +124,7 @@ if [ $setup_vpn == "y" ]; then vpn_service=${vpn_service:-"mullvad"} read -p "What's your VPN username? (without spaces): " vpn_user read -sp "What's your VPN password? (if you are using mullvad, just enter your username again): " vpn_password + echo echo "What country do you want to use?" read -p "You can check the countries list for your VPN here: https://github.com/qdm12/gluetun/wiki/$vpn_service#servers [brazil]: " vpn_country vpn_country=${vpn_country:-"brazil"} |