summaryrefslogtreecommitdiff
path: root/puppet/modules/site_config/manifests/resolvconf.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2012-10-12 15:09:40 +0200
committervarac <varacanero@zeromail.org>2012-10-12 15:09:40 +0200
commitb297dd3c47a9d23eaba6070555ecec47f3acbcc6 (patch)
tree31432f93ca31eba83dcb709742bb2f08f1b3de9d /puppet/modules/site_config/manifests/resolvconf.pp
parentdfe67e888d5ab6b74c0dd9cc7e3d738c07b0ae5d (diff)
add third dns server (swiss privacy found.)
Diffstat (limited to 'puppet/modules/site_config/manifests/resolvconf.pp')
-rw-r--r--puppet/modules/site_config/manifests/resolvconf.pp5
1 files changed, 3 insertions, 2 deletions
diff --git a/puppet/modules/site_config/manifests/resolvconf.pp b/puppet/modules/site_config/manifests/resolvconf.pp
index dca48b21..bd0539b9 100644
--- a/puppet/modules/site_config/manifests/resolvconf.pp
+++ b/puppet/modules/site_config/manifests/resolvconf.pp
@@ -6,11 +6,12 @@ class site_config::resolvconf {
$domain_hash = hiera('domain')
$domain_public = $domain_hash['public']
- # 127.0.0.1: caching-only local bind
+ # 127.0.0.1: caching-only local bind
# 87.118.100.175: http://server.privacyfoundation.de
+ # 62.141.58.13: http://www.privacyfoundation.ch/de/service/server.html
class { '::resolvconf':
domain => $domain_public,
search => $domain_public,
- nameservers => [ '127.0.0.1', '87.118.100.175' ]
+ nameservers => [ '127.0.0.1', '87.118.100.175', '62.141.58.13' ]
}
}