Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions src/runvm-osbuild
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,14 @@ extra_kargs=$(getconfig "extra-kargs-string" "")
# if it exists then let's check here to see if the container exists
# in local container storage. If it does then we'll just pass that
# and not pass any ociarchive info into the build.
if podman image exists "${container_repo}:${container_tag}"; then
ostree_container=""
fi
#
# XXX: Disabling this for now as it ends up with inconsistent digests
# in our deployed bootimages versus what's pushed to the registry
# and is causing zincati to not work.
# https://github.com/coreos/fedora-coreos-tracker/issues/2066
#if podman image exists "${container_repo}:${container_tag}"; then
# ostree_container=""
#fi

# Since it doesn't exist create loop-control
[ ! -e /dev/loop-control ] && mknod /dev/loop-control c 10 237
Expand Down
Loading