Merge pull request #12856 from harshitgupta1337/cbl-mariner-config-return-0

rootfs: Suppress condition check failure errors in cbl-mariner/config.sh
This commit is contained in:
Fabiano Fidêncio
2026-04-30 08:35:06 +02:00
committed by GitHub

View File

@@ -11,6 +11,6 @@ OS_VERSION=${OS_VERSION:-3.0}
LIBC="gnu"
PACKAGES="kata-packages-uvm"
# shellcheck disable=SC2154
[[ "${AGENT_INIT}" = no ]] && PACKAGES+=" systemd"
if [[ "${AGENT_INIT}" = "no" ]]; then PACKAGES+=" systemd"; fi
# shellcheck disable=SC2154
[[ "${SECCOMP}" = yes ]] && PACKAGES+=" libseccomp"
if [[ "${SECCOMP}" = "yes" ]]; then PACKAGES+=" libseccomp"; fi