mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
[PR #6313/aa77a88f backport][stable-5] pkgng: skip jail tests also on FreeBSD 12.3 (#6314)
pkgng: skip jail tests also on FreeBSD 12.3 (#6313)
Skip jail tests also on FreeBSD 12.3.
(cherry picked from commit aa77a88f4b
)
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
2aca1a910c
commit
cb49b96b4d
1 changed files with 5 additions and 2 deletions
|
@ -501,8 +501,11 @@
|
||||||
# NOTE: FreeBSD 12.0 test runner receives a "connection reset by peer" after ~20% downloaded so we are
|
# NOTE: FreeBSD 12.0 test runner receives a "connection reset by peer" after ~20% downloaded so we are
|
||||||
# only running this on 12.1 or higher
|
# only running this on 12.1 or higher
|
||||||
#
|
#
|
||||||
|
# NOTE: FreeBSD 12.3 fails with some kernel mismatch for packages
|
||||||
|
# (someone with FreeBSD knowledge has to take a look)
|
||||||
|
#
|
||||||
# NOTE: FreeBSD 12.4 fails to update repositories because it cannot load certificates from /usr/share/keys/pkg/trusted
|
# NOTE: FreeBSD 12.4 fails to update repositories because it cannot load certificates from /usr/share/keys/pkg/trusted
|
||||||
# knowledge has to take a look)
|
# (someone with FreeBSD knowledge has to take a look)
|
||||||
#
|
#
|
||||||
# NOTE: FreeBSD 13.0 fails to update the package catalogue for unknown reasons (someone with FreeBSD
|
# NOTE: FreeBSD 13.0 fails to update the package catalogue for unknown reasons (someone with FreeBSD
|
||||||
# knowledge has to take a look)
|
# knowledge has to take a look)
|
||||||
|
@ -513,7 +516,7 @@
|
||||||
# See also
|
# See also
|
||||||
# https://github.com/ansible-collections/community.general/issues/5795
|
# https://github.com/ansible-collections/community.general/issues/5795
|
||||||
when: >-
|
when: >-
|
||||||
(ansible_distribution_version is version('12.01', '>=') and ansible_distribution_version is version('12.4', '<'))
|
(ansible_distribution_version is version('12.01', '>=') and ansible_distribution_version is version('12.3', '<'))
|
||||||
or ansible_distribution_version is version('13.2', '>=')
|
or ansible_distribution_version is version('13.2', '>=')
|
||||||
block:
|
block:
|
||||||
- name: Setup testjail
|
- name: Setup testjail
|
||||||
|
|
Loading…
Reference in a new issue