Skip to content
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

workaround broken Tomcat on EL8 #1788

Merged
merged 1 commit into from
Mar 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions roles/vagrant_workarounds/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,14 @@
shell: rm -f /boot/*-generic.img
when:
- ansible_os_family == 'Debian'

# workaround for broken tomcat due to https://issues.redhat.com/browse/CS-1965
- name: never install Tomcat on EL8
community.general.ini_file:
path: /etc/dnf/dnf.conf
section: main
option: excludepkgs
value: 'tomcat,tomcat-lib,tomcat-jsp-2.3-api,tomcat-servlet-4.0-api,tomcat-el-3.0-api'
when:
- ansible_os_family == 'RedHat'
- ansible_distribution_major_version == '8'
Loading