add checksum creator for isos (neil)

This commit is contained in:
Louis Abel 2021-11-11 08:08:23 -07:00
parent 41111d385b
commit 1d0fe07add
Signed by: label
GPG Key ID: B37E62D143879B36
1 changed files with 12 additions and 1 deletions

View File

@ -59,10 +59,21 @@ for ARCH in "${ARCHES[@]}"; do
# Copy the ISO and manifests into the main isos target
cp "${SOURCE}"/*.iso "${TARGET}/"
cp "${SOURCE}"/*.iso.manifest "${TARGET}/"
cat "${SOURCE}/CHECKSUM" >> "${TARGET}/CHECKSUM"
done
done
# call out for checksum creation on the ISOs
pushd "${STAGING_ROOT}/${CATEGORY_STUB}/${REV}" || { echo "Failed to change directory"; exit; }
for file in isos/**/*iso*; do
arch=$(echo $file | cut -d\/ -f 2);
printf "# %s: %s bytes\n%s\n" \
"$(basename $file)" \
"$(stat -c %s $file)" \
"$(cd isos/${arch}/ && sha256sum --tag $(basename $file))" \
| sudo tee -a isos/${arch}/CHECKSUM;
done
popd || { echo "Failed to change directory"; exit; }
# make a kickstart directory
for ARCH in "${ARCHES[@]}"; do
for REPO in "${MODS_REPOS[@]}"; do