diff --git a/global-templates/host-templates.conf b/global-templates/host-templates.conf index 28c4da1..8de9cf4 100644 --- a/global-templates/host-templates.conf +++ b/global-templates/host-templates.conf @@ -46,3 +46,9 @@ template Host "postfix-host" { procs_critical = "1:2" } } + +template Host "puppet-host" { + vars.procs["puppet"] = { + procs_critical = "1:2" + } +} diff --git a/infra02sat.infra.cacert.org/hosts.conf b/infra02sat.infra.cacert.org/hosts.conf new file mode 100644 index 0000000..c913871 --- /dev/null +++ b/infra02sat.infra.cacert.org/hosts.conf @@ -0,0 +1,13 @@ +// vim: set ft=icinga2 et sw=2 ts=2 si ai: +object Host "infra02sat" { + import "debian-host" + import "puppet-host" + + groups += [ "monitoring" ] + + address = "127.0.0.1" + address6 = "::1" + + vars.is_container = true + vars.debian_relase = 12 +}