summaryrefslogtreecommitdiff
path: root/manifests/config.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/config.pp')
-rw-r--r--manifests/config.pp15
1 files changed, 13 insertions, 2 deletions
diff --git a/manifests/config.pp b/manifests/config.pp
index c5440c5..d82044b 100644
--- a/manifests/config.pp
+++ b/manifests/config.pp
@@ -6,8 +6,18 @@ class check_mk::config (
$bin_dir = "/omd/sites/${site}/bin",
$use_storedconfigs = true
) {
- file { "${etc_dir}/${nagios_subdir}/local":
- ensure => directory,
+ file {
+ # for local check_mk checks
+ "${etc_dir}/${nagios_subdir}/local":
+ ensure => directory;
+
+ # package provided and check_mk generated files, defined so the nagios
+ # module doesn't purge them
+ "${etc_dir}/${nagios_subdir}/conf.d/check_mk":
+ ensure => directory;
+ [ "${etc_dir}/${nagios_subdir}/conf.d/check_mk/check_mk_objects.cfg",
+ "${etc_dir}/${nagios_subdir}/conf.d/check_mk/check_mk_templates.cfg" ]:
+ ensure => present;
}
file_line { 'nagios-add-check_mk-cfg_dir':
ensure => present,
@@ -41,6 +51,7 @@ class check_mk::config (
}
if ( $use_storedconfigs ) {
class { 'check_mk::server::collect_hosts': }
+ class { 'check_mk::server::collect_ps': }
}