fruit-bowl/environments/production/modules/hosts/manifests/init.pp
2025-04-01 17:49:26 +00:00

9 lines
177 B
Puppet

class hosts {
file { '/etc/hosts':
ensure => file,
owner => 'root',
group => 'root',
mode => '0644',
content => template('hosts/hosts.erb'),
}
}