Tomcat 9 by default with Debian 11
continuous-integration/drone/push Build was killed Details

This commit is contained in:
Jérémy Lecour 2022-04-08 11:57:33 +02:00 committed by Jérémy Lecour
parent fca895a231
commit 84178d6b24
2 changed files with 3 additions and 2 deletions

View File

@ -27,6 +27,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
* minifirewall: tail template follows symlinks
* minifirewall: upstream release 22.03.5
* openvpn: use a subnet topology instead of the net30 default topology
* tomcat: Tomcat 9 by default with Debian 11
### Fixed

View File

@ -21,9 +21,9 @@
- ansible_distribution_release == "buster"
- tomcat_version is not defined
- name: Set Tomcat version to 10 on Debian 11 if missing
- name: Set Tomcat version to 9 on Debian 11 if missing
set_fact:
tomcat_version: 10
tomcat_version: 9
when:
- ansible_distribution_release == "bullseye"
- tomcat_version is not defined