-
Notifications
You must be signed in to change notification settings - Fork 10
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
Upgrade to version 8.11.0, fix log4j and Debian 11 bullseye support #146
Conversation
Upgrade to version 8.11.0, fix log4j and Debian 11 bullseye support
tasks/config.yml
Outdated
@@ -35,6 +35,10 @@ | |||
force: true | |||
notify: restart Solr | |||
|
|||
- name: Solr | Gather OS specific vars | |||
include_vars: "{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml" | |||
when: ansible_facts['distribution'] == "Debian" and ansible_facts['distribution_major_version'] == "11" |
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 of personal preference: I think this may be too tied to the case of Debian 11. I would rather generate a vars file to each single distro we support so it can be easily read.
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.
Yes, I also think this would be cleaner, made a commit :)
Could you update the pip requirements? |
Updated pip dependencies :) |
9903f5f
to
f3107b1
Compare
Description of the Change
Upgrade to version 8.11.0, fix log4j and Debian 11 bullseye support
Benefits
Possible Drawbacks
Applicable Issues
#141