chore(updater): set vpn field for all providers

- Bump servers model versions for all providers except mullvad, ivpn, windscribe
- Do not leave `vpn` JSON field empty for any server
This commit is contained in:
Quentin McGaw
2022-04-23 10:59:29 +00:00
parent e6c3cb078a
commit 045ecabb78
21 changed files with 9945 additions and 20 deletions

View File

@@ -7,6 +7,7 @@ import (
"errors"
"fmt"
"github.com/qdm12/gluetun/internal/constants/vpn"
"github.com/qdm12/gluetun/internal/models"
"github.com/qdm12/gluetun/internal/updater/resolver"
)
@@ -44,6 +45,7 @@ func GetServers(ctx context.Context, presolver resolver.Parallel, minServers int
for hostname, ips := range hostnameToIPs {
city := hostnameToCity[hostname]
server := models.Server{
VPN: vpn.OpenVPN,
City: city,
Hostname: hostname,
UDP: true,