summaryrefslogtreecommitdiff
path: root/puppet/modules/site_config/manifests/hosts.pp
blob: 08890a5d29075cffac33a741024f7cc7e7957554 (plain)
1
2
3
4
5
6
7
class site_config::hosts {

  file { '/etc/hosts':
    content => template('site_config/hosts'),
    mode    => '0644', owner => root, group => root;
  }
}