From cf9073397cf8538b168501d9467865bd0059a9e7 Mon Sep 17 00:00:00 2001 From: Stephan Henningsen Date: Tue, 17 Oct 2023 23:13:17 +0200 Subject: [PATCH] Update check-config.sh Add IP_NF_MANGLE to "Generally Required" kernel features, since it appears to be necessary for Docker Swarm to work. Closes https://github.com/moby/moby/issues/46636 Signed-off-by: Stephan Henningsen --- contrib/check-config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/check-config.sh b/contrib/check-config.sh index 175370ea7b..7f57c7bb39 100755 --- a/contrib/check-config.sh +++ b/contrib/check-config.sh @@ -218,7 +218,7 @@ check_flags \ CGROUPS CGROUP_CPUACCT CGROUP_DEVICE CGROUP_FREEZER CGROUP_SCHED CPUSETS MEMCG \ KEYS \ VETH BRIDGE BRIDGE_NETFILTER \ - IP_NF_FILTER IP_NF_TARGET_MASQUERADE \ + IP_NF_FILTER IP_NF_MANGLE IP_NF_TARGET_MASQUERADE \ NETFILTER_XT_MATCH_ADDRTYPE \ NETFILTER_XT_MATCH_CONNTRACK \ NETFILTER_XT_MATCH_IPVS \