mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-04-27 19:35:32 +00:00
> Tips depend on target shell and yours is unknown. Add a shebang. Add ``` #!/usr/bin/env bash ``` Signed-off-by: stevenhorsman <steven@uk.ibm.com>
13 lines
291 B
Bash
13 lines
291 B
Bash
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2023 Microsoft Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
OS_NAME=cbl-mariner
|
|
OS_VERSION=${OS_VERSION:-3.0}
|
|
LIBC="gnu"
|
|
PACKAGES="kata-packages-uvm"
|
|
[ "$AGENT_INIT" = no ] && PACKAGES+=" systemd"
|
|
[ "$SECCOMP" = yes ] && PACKAGES+=" libseccomp"
|