Release 22.05 #155

Merged
jlecour merged 81 commits from unstable into stable 2022-05-10 17:01:18 +02:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 84178d6b24 - Show all commits

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