9 lines
185 B
Puppet
9 lines
185 B
Puppet
class dns {
|
|
file { '/etc/resolv.conf':
|
|
ensure => file,
|
|
owner => 'root',
|
|
group => 'root',
|
|
mode => '0644',
|
|
content => template('dns/resolv.conf.erb'),
|
|
}
|
|
}
|