File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1043,15 +1043,17 @@ build-kairos-dd-image:
10431043 docker run --rm index.docker.io/library/palette-installer-image:maas cat /etc/kairos-release 2> /dev/null || echo "File not found" && \
10441044 exit 1) && \
10451045 echo "=== Running auroraboot (version: ${AURORABOOT_VERSION}) to convert image to raw disk ===" && \
1046+ ( set +e ; \
10461047 docker run --privileged -v /var/run/docker.sock:/var/run/docker.sock \
10471048 -v /workdir:/aurora --net host --rm quay.io/kairos/auroraboot:${AURORABOOT_VERSION } \
10481049 --debug \
10491050 --set "disable_http_server=true" \
10501051 --set "disable_netboot=true" \
10511052 --set "disk.efi=true" \
1052- --set "container_image=index.docker.io/library/palette-installer-image:maas" \
1053+ --set "container_image=oci: index.docker.io/library/palette-installer-image:maas" \
10531054 --set "state_dir=/aurora" > /workdir/auroraboot.log 2> &1; \
1054- AURORABOOT_EXIT= $?; \
1055+ echo $? > /workdir/auroraboot.exit; ) && \
1056+ AURORABOOT_EXIT= $(cat /workdir/auroraboot.exit) && \
10551057 echo "=== Auroraboot finished with exit code: $AURORABOOT_EXIT ===" && \
10561058 echo "=== Auroraboot log (always shown for debugging) ===" && \
10571059 cat /workdir/auroraboot.log || true && \
You can’t perform that action at this time.
0 commit comments