From 9b3abbd2ff1b02d3c36e24bc0f3ddf539f245fac Mon Sep 17 00:00:00 2001 From: Nick Chappell Date: Thu, 15 Jan 2015 20:57:10 -0800 Subject: [PATCH] Removed the require => parameters on the file resources for check plugins since a check plugin command definition won't necessarily require the Nagios monitoring plugin packages. --- manifests/checkplugin.pp | 3 --- 1 file changed, 3 deletions(-) diff --git a/manifests/checkplugin.pp b/manifests/checkplugin.pp index 45e2012..1d8d477 100644 --- a/manifests/checkplugin.pp +++ b/manifests/checkplugin.pp @@ -30,7 +30,6 @@ define icinga2::checkplugin ( group => $checkplugin_target_file_group, mode => $checkplugin_target_file_mode, content => template("${checkplugin_template_module}/${checkplugin_template}"), - require => Package[$icinga2::params::icinga2_client_packages], } } elsif $checkplugin_file_distribution_method == 'source' { @@ -39,7 +38,6 @@ define icinga2::checkplugin ( group => $checkplugin_target_file_group, mode => $checkplugin_target_file_mode, source => $checkplugin_source_file, - require => Package[$icinga2::params::icinga2_client_packages], } } elsif $checkplugin_file_distribution_method == 'inline' { @@ -48,7 +46,6 @@ define icinga2::checkplugin ( group => $checkplugin_target_file_group, mode => $checkplugin_target_file_mode, content => $checkplugin_source_inline, - require => Package[$icinga2::params::icinga2_client_packages], } } else {