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

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