summaryrefslogtreecommitdiff
path: root/manifests/host.pp
blob: 5c83b9697f5a2fe820a76bebd625360cac9a28d7 (plain)
1
2
3
4
5
6
7
8
define check_mk::host {
  $host = $title
  concat::fragment { "check_mk-${host}":
    target  => '/etc/check_mk/main.mk',
    content => "  '${host}',\n",
    order   => 02,
  }
}