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 {