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