Skip to content

Commit

Permalink
workaround broken Tomcat on EL8
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeni committed Mar 12, 2024
1 parent 3d56400 commit 9d714b0
Showing 1 changed file with 11 additions and 0 deletions.
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'

0 comments on commit 9d714b0

Please sign in to comment.