[PR #9243/9df4ef9a backport][stable-9] sysrc: add another exclusion for ezjail (#9245)

sysrc: add another exclusion for ezjail (#9243)

Add another exclusion.

(cherry picked from commit 9df4ef9a9c)

Co-authored-by: Felix Fontein <felix@fontein.de>
pull/9248/head
patchback[bot] 2024-12-13 22:41:05 +01:00 committed by GitHub
parent baef8580ec
commit 396eb1d7e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -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