summaryrefslogtreecommitdiff
path: root/manifests/host.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/host.pp')
-rw-r--r--manifests/host.pp8
1 files changed, 8 insertions, 0 deletions
diff --git a/manifests/host.pp b/manifests/host.pp
new file mode 100644
index 0000000..5c83b96
--- /dev/null
+++ b/manifests/host.pp
@@ -0,0 +1,8 @@
+define check_mk::host {
+ $host = $title
+ concat::fragment { "check_mk-${host}":
+ target => '/etc/check_mk/main.mk',
+ content => " '${host}',\n",
+ order => 02,
+ }
+}