-
Notifications
You must be signed in to change notification settings - Fork 139
Add dependencies as a parameter #52
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
Comments
|
i am a little bit confused, i have seen, that there is a parameter for i will happily provide a PR for |
We have a parameter for the package name. The workaround for dependencies is to pass in |
kind of related to: #41
hardcoded parameters are not that good, having
$package_name
and$dependency
as a parameter forletsencrypt::install
would be awesome.https://github.com/danzilio/puppet-letsencrypt/blob/v1.0.0/manifests/install.pp#L56
https://github.com/danzilio/puppet-letsencrypt/blob/v1.0.0/manifests/install.pp#L62
https://github.com/danzilio/puppet-letsencrypt/blob/v1.0.0/manifests/install.pp#L44
because for example
ensure_packages($dependencies)
causes an error, if a manifest already includespackage { 'git': }
orpackage { 'python': }
and notensure_packages(['git'])
which sadly is quite common.The text was updated successfully, but these errors were encountered: