mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-05-07 07:57:43 +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>
22 lines
560 B
Bash
22 lines
560 B
Bash
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2018 SUSE
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
OS_VERSION=${OS_VERSION:-10.11}
|
|
|
|
# Set OS_NAME to the desired debian "codename"
|
|
OS_NAME=${OS_NAME:-"stretch"}
|
|
|
|
PACKAGES="systemd coreutils init iptables chrony kmod"
|
|
|
|
# NOTE: Re-using ubuntu rootfs configuration, see 'ubuntu' folder for full content.
|
|
source $script_dir/ubuntu/$CONFIG_SH
|
|
|
|
# Init process must be one of {systemd,kata-agent}
|
|
INIT_PROCESS=systemd
|
|
# List of zero or more architectures to exclude from build,
|
|
# as reported by `uname -m`
|
|
ARCH_EXCLUDE_LIST=()
|