-
-
Notifications
You must be signed in to change notification settings - Fork 499
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
Update apt::source to match with new method #423
Conversation
Does this require a bump in metadata.json, or will it still work with apt 1.8.0? |
@hunner yes, but 2.x.x has been released in 2015-04. I suppose people update their manifests from time to time? Maybe I'm wrong. Feel free to merge it or not. FWIW, Puppet OpenStack CI is running 2.2.x serie: |
I want to merge this, but it would require a 6.0.0 release of rabbitmq. While we're at it, what other changes do we want to make to the module? |
Could you also increase the lower bound of puppetlabs-apt in metadata.json to >= 2.0.0? Since it won't work with 1.8.x |
@hunner done |
👍 |
hi @EmilienM , could you please rebase? |
@eputnam done. |
puppetlabs-apt recently did some changes that brings warnings when we run puppetlabs-rabbitmq, because we need to update the way we consume apt module. $include_src is deprecated and will be removed in the next major release, please use $include => { 'src' => false } instead $key_source is deprecated and will be removed in the next major release, please use $key => { 'source' => http://www.rabbitmq.com/rabbitmq-signing-key-public.asc } instead. This patch aims to update the way we use puppetlabs-apt to match with upstream and avoid warnings in our catalog. Also bump puppetlabs-apt to >= 2.0.0.
Merged in #497 |
puppetlabs-apt recently did some changes that brings warnings when we
run puppetlabs-rabbitmq, because we need to update the way we consume
apt module.
$include_src is deprecated and will be removed in the next major
release, please use $include => { 'src' => false } instead
$key_source is deprecated and will be removed in the next major release,
please use $key => { 'source' =>
http://www.rabbitmq.com/rabbitmq-signing-key-public.asc } instead.
This patch aims to update the way we use puppetlabs-apt to match with
upstream and avoid warnings in our catalog.