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

[PR #7543/b3c661a9 backport][stable-7] sysrc: FreeBSD jail test no longer works with FreeBSD 13.1 (#7545)

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

Jail test no longer works with FreeBSD 13.1.

(cherry picked from commit b3c661a9f6)

Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
patchback[bot] 2023-11-18 13:59:50 +01:00 committed by GitHub
parent be09373815
commit 6448372c04
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