summaryrefslogtreecommitdiff
path: root/puppet/modules/site_config/manifests/resolvconf.pp
blob: d73f0b78af2ac00c8b38a2cb9d327a692cadb391 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
class site_config::resolvconf {

  # bind9 purging can be taken out after some time
  package { 'bind9':
    ensure => absent,
  }
  file { '/etc/default/bind9':
    ensure    => absent;
  }
  file { '/etc/bind/named.conf.options':
    ensure => absent;
  }

  $domain_public = $site_config::default::domain_hash['full_suffix']

  # 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', '62.141.58.13' ]
  }
}