mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-08 11:40:32 -07:00
[PR #9243/9df4ef9a backport][stable-8] sysrc: add another exclusion for ezjail (#9244)
sysrc: add another exclusion for ezjail (#9243)
Add another exclusion.
(cherry picked from commit 9df4ef9a9c
)
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
b804624dd3
commit
246dd26bfe
1 changed files with 3 additions and 1 deletions
|
@ -141,10 +141,12 @@
|
||||||
#
|
#
|
||||||
# NOTE: currently fails with FreeBSD 12 with minor version less than 4
|
# NOTE: currently fails with FreeBSD 12 with minor version less than 4
|
||||||
# NOTE: currently fails with FreeBSD 13 with minor version less than 2
|
# NOTE: currently fails with FreeBSD 13 with minor version less than 2
|
||||||
|
# NOTE: currently fails with FreeBSD 14 with minor version less than 1
|
||||||
#
|
#
|
||||||
when: >-
|
when: >-
|
||||||
ansible_distribution_version is version('12.4', '>=') and ansible_distribution_version is version('13', '<')
|
ansible_distribution_version is version('12.4', '>=') and ansible_distribution_version is version('13', '<')
|
||||||
or ansible_distribution_version is version('13.2', '>=')
|
or ansible_distribution_version is version('13.2', '>=') and ansible_distribution_version is version('14', '<')
|
||||||
|
or ansible_distribution_version is version('14.1', '>=')
|
||||||
block:
|
block:
|
||||||
- name: Setup testjail
|
- name: Setup testjail
|
||||||
include_tasks: setup-testjail.yml
|
include_tasks: setup-testjail.yml
|
||||||
|
|
Loading…
Add table
Reference in a new issue