Skip to content

Commit

Permalink
sysrc: add another exclusion for ezjail (#9243)
Browse files Browse the repository at this point in the history
Add another exclusion.
  • Loading branch information
felixfontein authored Dec 13, 2024
1 parent d7ad7c2 commit 9df4ef9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/integration/targets/sysrc/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,12 @@
#
# 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 14 with minor version less than 1
#
when: >-
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:
- name: Setup testjail
include_tasks: setup-testjail.yml
Expand Down

0 comments on commit 9df4ef9

Please sign in to comment.