summaryrefslogtreecommitdiff
path: root/modules/profiles/manifests/common.pp
blob: dc6395103d2246c4a77fc75fe918ae20d3b09942 (plain)
1
2
3
4
5
6
7
8
class profiles::common {

  file_line { 'hosts ourself':
    ensure => present,
    line   => "::1\t${facts['name']}\t${::fqdn}",
    path   => '/etc/hosts',
  }
}