-
Notifications
You must be signed in to change notification settings - Fork 95
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
Drop support for Puppet 3 and 4 #109
Conversation
@@ -19,7 +28,7 @@ | |||
$epel_gpgcheck = $epel::params::epel_gpgcheck, | |||
$epel_repo_gpgcheck = $epel::params::epel_repo_gpgcheck, | |||
$epel_metalink = $epel::params::epel_metalink, | |||
$epel_managed = $epel::params::epel_managed, | |||
Boolean $epel_managed = true, |
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.
puppet-strings can make use of defaults if they're here and not coming from params.pp
# | ||
# Actions: | ||
# Import a RPM gpg key | ||
# @api private |
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.
I'm pretty sure this is private given the require => File[$path],
.
# path => "/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6" | ||
# } | ||
# | ||
# @example Sample Usage |
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.
If it's private, does it still need an @example
?
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.
Not really. I felt a bit bad about just nuking it though.
I've also started the migration to using data-types, puppet-strings and removing static parameters from params.pp.
18898e1
to
ef5192a
Compare
I've also started the migration to using data-types, puppet-strings and
removing static parameters from params.pp.