-
Notifications
You must be signed in to change notification settings - Fork 39
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
Change existing Kafo type definitions to Puppet 4 types #114
Conversation
@@ -27,4 +27,9 @@ PuppetLintParamDocs.define_selective do |config| | |||
config.pattern = ["manifests/capsule.pp", "manifests/init.pp"] | |||
end | |||
|
|||
require 'kafo_module_lint/tasks' | |||
KafoModuleLint::RakeTask.new do |config| | |||
config.pattern = ["manifests/capsule.pp", "manifests/init.pp"] |
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.
Should manifests/puppet.pp
be included here as well? That should also be added to .sync.yml
This fixes an issue with nightlies so I'd like to get this merged. |
Ready for another look. Puppet is not needed at the top level anymore, we did it a different way. |
Is the removal of capsule intentional? It feels like it doesn't belong in changing the kafo type definitions. Maybe at least make it a separate commit? |
# | ||
# $certs_tar:: path to tar file with certs to generate. REQUIRED | ||
# $certs_tar:: Path to tar file with certs to generate |
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.
A bit odd that this is required but in the code there's if $certs_tar {
.
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.
You're right, it is actually optional since you don't need the certs tar on a Katello. I updated the type
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 moved it here: #123
Ok ready for another look |
No description provided.