mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-10 06:26:57 +02:00
The base_sysexts.sh file was based on old version of the default parameter of the ./build_image script. Sync them now.
12 lines
293 B
Bash
12 lines
293 B
Bash
# Definitions of base sysexts to be built. Used by image.sh and
|
|
# image_changes.sh.
|
|
|
|
if [[ ${1:-} = 'local' ]]; then
|
|
local ciabs_base_sysexts
|
|
fi
|
|
|
|
ciabs_base_sysexts=(
|
|
'containerd-flatcar:app-containers/containerd'
|
|
'docker-flatcar:app-containers/docker&app-containers/docker-cli'
|
|
)
|