[PR #9243/9df4ef9a backport][stable-10] sysrc: add another exclusion for ezjail (#9246)
sysrc: add another exclusion for ezjail (#9243)
Add another exclusion.
(cherry picked from commit 9df4ef9a9c
)
Co-authored-by: Felix Fontein <felix@fontein.de>
pull/9247/head
parent
a1c39cc882
commit
7bc937b5e8
|
@ -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…
Reference in New Issue