fruit-bowl/environments/production/modules/dns/manifests/init.pp

10 lines
185 B
ObjectPascal
Raw Permalink Normal View History

2025-04-01 17:40:03 +00:00
class dns {
file { '/etc/resolv.conf':
ensure => file,
owner => 'root',
group => 'root',
mode => '0644',
content => template('dns/resolv.conf.erb'),
}
}