From 8b36ce198f6c10068b0e3c23f08fa2dadc409455 Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Fri, 5 Mar 2021 22:46:21 +0000 Subject: [PATCH] Maintenance: 8.8.8.8 as the cli updater DNS --- internal/cli/update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cli/update.go b/internal/cli/update.go index 1c324f4c..6496650e 100644 --- a/internal/cli/update.go +++ b/internal/cli/update.go @@ -21,7 +21,7 @@ func (c *cli) Update(ctx context.Context, args []string, os os.OS) error { flagSet := flag.NewFlagSet("update", flag.ExitOnError) flagSet.BoolVar(&flushToFile, "file", false, "Write results to /gluetun/servers.json (for end users)") flagSet.BoolVar(&options.Stdout, "stdout", false, "Write results to console to modify the program (for maintainers)") - flagSet.StringVar(&options.DNSAddress, "dns", "1.1.1.1", "DNS resolver address to use") + flagSet.StringVar(&options.DNSAddress, "dns", "8.8.8.8", "DNS resolver address to use") flagSet.BoolVar(&options.Cyberghost, "cyberghost", false, "Update Cyberghost servers") flagSet.BoolVar(&options.Mullvad, "mullvad", false, "Update Mullvad servers") flagSet.BoolVar(&options.Nordvpn, "nordvpn", false, "Update Nordvpn servers")