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