We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c239874 commit 8b3845fCopy full SHA for 8b3845f
1 file changed
roles/prereq/tasks/main.yml
@@ -11,6 +11,12 @@
11
name: policycoreutils # Used by install script to restore SELinux context
12
update_cache: "{{ airgap_dir is not defined }}"
13
14
+- name: Install Dependent RHEL 10 Package
15
+ when: ansible_distribution in ['RedHat'] and ansible_distribution_major_version == "10"
16
+ ansible.builtin.dnf:
17
+ name: kernel-modules-extra # Load br_netfilter module
18
+ update_cache: "{{ airgap_dir is not defined }}"
19
+
20
- name: Enable IPv4 forwarding
21
ansible.posix.sysctl:
22
name: net.ipv4.ip_forward
0 commit comments