[stable-2.18] Install `xt_comment` kernel mod @ `iptables` test (#86187) (#86193)

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>

(cherry picked from commit 69c9fbed26)
pull/86203/head
🇺🇦 Sviatoslav Sydorenko (Святослав Сидоренко) 4 weeks ago committed by GitHub
parent ccf8754bc7
commit a553f4343e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -35,4 +35,17 @@
# 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'
- >-
ansible_distribution_major_version | int >= 10
- import_tasks: chain_management.yml

Loading…
Cancel
Save