Install `xt_comment` kernel mod @ `iptables` test (#86187)

This patch fixes integration test jobs running under RHEL 10.0 that
don't have this extension pre-installed.

Co-Authored-By: sivel / Matt Martz <matt@sivel.net>

ci_complete
ci_coverage
pull/85755/merge
🇺🇦 Sviatoslav Sydorenko (Святослав Сидоренко) 3 weeks ago committed by GitHub
parent eb0ada3d28
commit 69c9fbed26
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -35,6 +35,16 @@
# prevent attempts to upgrade the kernel and install kernel modules for a non-running kernel version
exclude: "{{ 'kernel-core' if ansible_distribution == 'RedHat' else omit }}"
- name: install xt_comment for iptables `-m comment` tests on RHEL 10
dnf:
name:
- kernel-modules-extra-{{ ansible_facts.kernel }}
state: present
exclude:
# prevent attempts to upgrade the kernel and install kernel modules for a non-running kernel version
- kernel-core
when: ansible_distribution == 'RedHat'
- name: Use iptables with unnecessary extension match
iptables:
chain: INPUT

Loading…
Cancel
Save