From fafd92202f8482d4bf220057513ab238446c68fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20Beaupr=C3=A9?= Date: Fri, 17 Jul 2015 16:29:25 -0400 Subject: use Google's nameservers instead of immerda's by default according to an ally at Google, they do not correlate logs of queries to those nameservers and anonymise logs after 24 hours. therefore we consider it an acceptable tradeoff between reliability, availability and privacy. note that the previous default (presumably Immerda's nameservers) were not reachable while doing this commit so could not be tested for availability. --- README.md | 6 +++--- manifests/init.pp | 5 +---- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index be2e2ac..2e67823 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,9 @@ array. For example: } ... will create a `resolv.conf` that searches the domain name of the -machine (the `$::domain` fact) and uses Google's recursive -nameservers. The domain name and search path can be overriden with the -`$domain` and `$search` parameters. +machine (the `$::domain` fact) and uses Google's recursive nameservers +(also the default). The domain name and search path can be overriden +with the `$domain` and `$search` parameters. Extra options can be added at the end of the `resolv.conf` file with the `$tail` argument. diff --git a/manifests/init.pp b/manifests/init.pp index 60956ee..c682bfa 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -16,10 +16,7 @@ class resolvconf( $domain = $::domain, $search = $::domain, - $nameservers = [ - '77.109.138.45', - '77.109.139.29', - ], + $nameservers = [ '8.8.8.8' ], $tail, ) { $content = $::operatingsystem ? { -- cgit v1.2.3