1 # modules/resolvconf/manifests/init.pp - manage resolvconf stuff
2 # Copyright (C) 2007 admin@immerda.ch
5 # modules_dir { "resolvconf": }
8 $real_resolvconf_domain = $resolvconf_domain ? {
10 default => $resolvconf_domain,
12 $real_resolvconf_search = $resolvconf_search ? {
14 default => $resolvconf_search,
16 $real_resolvconf_nameservers = $resolvconf_nameservers ? {
17 '' => '212.103.67.60:212.103.67.61',
18 default => $resolvconf_nameservers,
21 file { '/etc/resolv.conf':
22 path => '/etc/resolv.conf',
26 content => template("resolvconf/resolvconf.erb")