mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-05-04 04:00:07 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user