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

10 lines
177 B
ObjectPascal
Raw Normal View History

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