mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-07-08 03:28:57 +00:00
CI: Replace Ubuntu 22.04 with 26.04 for ansible-core devel (#12052)
Replace Ubuntu 22.04 with 26.04 for devel.
This commit is contained in:
parent
eb69d25e45
commit
2f96093dbf
11 changed files with 138 additions and 113 deletions
|
|
@ -88,8 +88,11 @@
|
|||
community.general.apache2_module:
|
||||
name: evasive
|
||||
state: present
|
||||
# TODO: fix for Debian 13 (Trixie)!
|
||||
when: ansible_facts.distribution != 'Debian' or ansible_facts.distribution_major_version is version('13', '<')
|
||||
when:
|
||||
# TODO: fix for Debian 13 (Trixie)!
|
||||
- ansible_facts.distribution != 'Debian' or ansible_facts.distribution_major_version is version('13', '<')
|
||||
# TODO: fix for Ubuntu 26.04!
|
||||
- ansible_facts.distribution != 'Ubuntu' or ansible_facts.distribution_major_version is version('26', '<')
|
||||
|
||||
- name: use identifier to enable module, fix for https://github.com/ansible/ansible/issues/33669
|
||||
community.general.apache2_module:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue