-
-
Notifications
You must be signed in to change notification settings - Fork 273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use different file name for processes plugin config #856
Conversation
This change fixes collectd::plugin::processes to work on RHEL-based systems again after a conflicting change on puppet-collectd v10.0.1. It uses a different filename for the processes plugin configuration in a way that it will no longer overwrite a vendor-supplied file that is being wiped as part of collectd::plugin.
@@ -17,7 +17,7 @@ | |||
'collect_file_descriptor' => $collect_file_descriptor, | |||
'collect_memory_maps' => $collect_memory_maps, | |||
}), | |||
target => "${collectd::plugin_conf_dir}/processes-config.conf", | |||
target => $::collectd::plugin::processes::config_file, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please don't add leading ::
, that is only needed for puppet 3 (which we don't support anymore)
Hi @openglx, can you please take a look at the failing travis jobs? |
ping @openglx. This PR also requires a rebase. |
Replicate commit from Pull Request voxpupuli#856
Resubmission of PR voxpupuli#856
Resubmission of PR voxpupuli#856
Resubmission of PR voxpupuli#856
Hi @openglx, are you still interested in this? |
My apologies but I haven't used the module in months due change in employment. Thank you for providing this module and your time. |
Resubmission of PR voxpupuli#856
Resubmission of PR voxpupuli#856
This change fixes collectd::plugin::processes to work on RHEL-based
systems again after a conflicting change on puppet-collectd v10.0.1.
It uses a different filename for the processes plugin configuration
in a way that it will no longer overwrite a vendor-supplied file that
is being wiped as part of collectd::plugin.
Pull Request (PR) description
Updates file name used for collectd::plugin::processes settings.
This Pull Request (PR) fixes the following issues
Fixes #851