We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Puppet version 8 deprecates legacy facts: https://www.puppet.com/docs/puppet/7/core_facts.html#legacy-facts
There are a variety of these through this module that need to be updated.
Example: with legacy facts
default: { case $::operatingsystem { default: { fail("Unsupported platform: ${::osfamily}/${::operatingsystem}") } } }
fixed to modern facts
default: { case $facts['os']['name'] { default: { fail("Unsupported platform: ${facts['os']['family']}/${facts['os']['name']}") } } }
The text was updated successfully, but these errors were encountered:
Apologies, my system installed a very old version of this module.
Sorry, something went wrong.
No branches or pull requests
Puppet version 8 deprecates legacy facts: https://www.puppet.com/docs/puppet/7/core_facts.html#legacy-facts
There are a variety of these through this module that need to be updated.
Example:
with legacy facts
fixed to modern facts
The text was updated successfully, but these errors were encountered: