2023-04-28 03:50:56 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
log(){
|
|
|
|
printf "[LOG] [%s] %s\n" "$(date -Is)" "$1"
|
|
|
|
}
|
|
|
|
|
|
|
|
OUTPUT_DIR=/mnt/repos-staging/mirror/pub/oval
|
|
|
|
TEMP="$(mktemp -d)"
|
|
|
|
|
|
|
|
for version in 8 9; do
|
|
|
|
file="$TEMP/org.rockylinux.rlsa-$version.xml"
|
|
|
|
log "Generating $file"
|
2024-05-10 08:36:29 +00:00
|
|
|
#podman run --rm --storage-opt ignore_chown_errors=true ghcr.io/rocky-linux/oval:latest -- $version > "$file"
|
|
|
|
# The above reports an error when running on R8. The below may *not* work on anything else.
|
|
|
|
# TODO: verify this is the case.
|
|
|
|
podman run --rm --storage-opt ignore_chown_errors=true ghcr.io/rocky-linux/oval:latest $version > "$file"
|
2023-04-28 03:50:56 +00:00
|
|
|
log "Compressing $file to $file.bz"
|
|
|
|
bzip2 -kfz "$file"
|
|
|
|
done
|
|
|
|
|
|
|
|
log "Generating checksums"
|
|
|
|
|
|
|
|
pushd "$TEMP" >/dev/null || exit 2
|
|
|
|
|
|
|
|
# shellcheck disable=2035
|
|
|
|
sha256sum --tag * > CHECKSUM
|
|
|
|
popd > /dev/null || exit 2
|
|
|
|
|
|
|
|
log "Copying to staging directory $TEMP => $OUTPUT_DIR"
|
|
|
|
sudo rsync -vrSHP "$TEMP/" "$OUTPUT_DIR"
|
|
|
|
sudo chown -Rv 10004:10005 "$OUTPUT_DIR"
|
2023-05-12 18:00:52 +00:00
|
|
|
|