1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

sysrc: FreeBSD jail test no longer works with FreeBSD 13.1 (#7543)

Jail test no longer works with FreeBSD 13.1.
This commit is contained in:
Felix Fontein 2023-11-18 13:51:00 +01:00 committed by GitHub
parent 89f12c87eb
commit b3c661a9f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -140,11 +140,11 @@
- name: Test within jail - name: Test within jail
# #
# 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 1 # NOTE: currently fails with FreeBSD 13 with minor version less than 2
# #
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.1', '>=') or ansible_distribution_version is version('13.2', '>=')
block: block:
- name: Setup testjail - name: Setup testjail
include_tasks: setup-testjail.yml include_tasks: setup-testjail.yml