mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-22 12:29:49 +00:00
16 lines
480 B
Bash
16 lines
480 B
Bash
# This is a configuration file add extra variables to
|
|
# be used by build_rootfs() from rootfs_lib.sh the variables will be
|
|
# loaded just before call the function.
|
|
|
|
# Here there are a couple of variables you may need.
|
|
# Remove them or add more
|
|
|
|
# EulerOS Version
|
|
OS_VERSION=${OS_VERSION:-2}
|
|
|
|
#Mandatory Packages that must be installed
|
|
# systemd: An init system that will start kata-agent
|
|
# iptables: Need by Kata agent
|
|
# udevlib.so: Need by Kata agent
|
|
PACKAGES="systemd iptables"
|