You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is no ability to bypass this OS version check, even when a host was Python2 as the default .
Please add the ability to bypass this check so that the plugin can be installed.
if $facts['os']['family'] == 'Debian' and versioncmp($facts['os']['release']['major'], '11') >= 0 or
$facts['os']['family'] == 'RedHat' and versioncmp($facts['os']['release']['major'], '8') >= 0 or
$facts['os']['name'] == 'Ubuntu' and versioncmp($facts['os']['release']['major'], '20.04') >= 0 {
fail('https://pypi.org/project/collectd-rabbitmq/ does not support Python 3')
}
The text was updated successfully, but these errors were encountered:
The current collectd::plugin::rabbitmq manifest https://github.com/voxpupuli/puppet-collectd/blob/master/manifests/plugin/rabbitmq.pp - will not allow the plugin to be install on newer OS, as it assumes that Python3 is the default.
There is no ability to bypass this OS version check, even when a host was Python2 as the default .
Please add the ability to bypass this check so that the plugin can be installed.
The text was updated successfully, but these errors were encountered: