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