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
The systemd fact conditional added in 0.14.6 is incorrect. The fact is a boolean:
https://github.com/voxpupuli/puppet-systemd/blob/58f0075f6926e3efec647f1f4d525e9ed1ad006a/lib/facter/systemd.rb#L41
So it needs to check == true not == 'systemd'.
== true
== 'systemd'
The text was updated successfully, but these errors were encountered:
(choria-io#338) Fix systemd fact usage
161e220
The systemd fact is a boolean not a string so check if systemd == true. Fixes choria-io#338
(#338) Fix facts refreshing when refresh_type=systemd
db9869c
@treydock reported that an invalid condition was introduced in #335. This commit fix that.
Successfully merging a pull request may close this issue.
The systemd fact conditional added in 0.14.6 is incorrect. The fact is a boolean:
https://github.com/voxpupuli/puppet-systemd/blob/58f0075f6926e3efec647f1f4d525e9ed1ad006a/lib/facter/systemd.rb#L41
So it needs to check
== true
not== 'systemd'
.The text was updated successfully, but these errors were encountered: