Merge branch 'unstable' into debian12-keyring
gitea/ansible-roles/pipeline/head This commit looks good Details

This commit is contained in:
Jérémy Lecour 2022-11-06 10:19:36 +01:00 committed by Jérémy Lecour
commit 4c9aaf6d86
2 changed files with 12 additions and 0 deletions

View File

@ -465,6 +465,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
### Added
* bookworm-detect: transitional role to help dealing with unreleased bookworm version
* dovecot: Update munin plugin & configure it
* dovecot: vmail uid/gid are configurable
* evoacme: variable to disable Debian version check (default: False)

View File

@ -0,0 +1,11 @@
---
- debug:
var: ansible_lsb
# Force facts until Debian 12 is released because Ansible is dumb
- set_fact:
ansible_distribution_major_version: 12
ansible_distribution: "Debian"
ansible_distribution_release: "bookworm"
when: "ansible_lsb.codename == 'bookworm'"