From 385e17a6907c9be5564564224e7631f905599249 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Wed, 28 May 2025 17:11:39 +0200 Subject: [PATCH] Do not enable ebtables on modern kernels On kernel 6.12 which is shipped with CentOS Stream 10, ebtables is provided as kernel plugin, not loadable module. Thus, we should avoid attempts to load it as a module. Change-Id: I6fb9aab402a5c6b82b8c000392378c63194403c9 --- inventory/group_vars/network_hosts.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/inventory/group_vars/network_hosts.yml b/inventory/group_vars/network_hosts.yml index 298bd21a7e..922597a9ee 100644 --- a/inventory/group_vars/network_hosts.yml +++ b/inventory/group_vars/network_hosts.yml @@ -1,3 +1,4 @@ openstack_host_specific_kernel_modules: - name: "ebtables" pattern: "CONFIG_BRIDGE_NF_EBTABLES" + condition: "{{ ansible_facts['kernel'] is version('6.12', '<') }}"