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 <kolyshkin@gmail.com>
This commit is contained in:
Kir Kolyshkin
2024-10-29 16:54:20 -07:00
parent 68bef803eb
commit ee1bced18c

View File

@@ -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[@]}"