-
-
Notifications
You must be signed in to change notification settings - Fork 374
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
Add manage_scl boolean to control managing SCL #464
Conversation
manifests/install.pp
Outdated
default => 'absent', | ||
} | ||
if $python::manage_scl { | ||
$install_scl_repo_package = $::operatingsystem ? { |
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.
the topscope fact is deprecated. could you migrate it to $facts['os']['name']
?
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.
Done.
Test failures appear unrelated to the change. |
thanks! |
If we can get a release with this change in, that would be awesome. |
I'm working on a new release. That depends on #467 |
Any chance of that release now that #467 has been merged? |
Actually, scratch that for now, this module is still broken WRT to using SCL versions. I'll raise another issue. |
Pull Request (PR) description
This adds a
manage_scl
boolean which can be set tofalse
to stop managing the various SCL packages in the case some other module is doing that already.This Pull Request (PR) fixes the following issues
Fixes #463