From 47dfa2024fe1a464969efea062c9704014859946 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Tue, 29 Oct 2024 16:54:20 -0700 Subject: [PATCH] script/check-config.sh: add OVERLAY_FS check While this is used by the majority of upper container runtimes, it was not needed for runc itself. Since commit 515f09f7 runc uses overlay, too, so let's add a check for this. Signed-off-by: Kir Kolyshkin (cherry picked from commit ee1bced18cefdc0d4a1c0063754281b4f9d933b3) Signed-off-by: Kir Kolyshkin --- script/check-config.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/script/check-config.sh b/script/check-config.sh index c71ee72f2a7..504c3e52c3d 100755 --- a/script/check-config.sh +++ b/script/check-config.sh @@ -241,6 +241,9 @@ flags=( # required for bind-mounting /dev/mqueue into containers POSIX_MQUEUE + + # Most containers use overlayfs, and now runc itself uses it. + OVERLAY_FS ) check_flags "${flags[@]}"