Skip to content

Commit

Permalink
mangle: oval.sh contains a broken podman command
Browse files Browse the repository at this point in the history
  • Loading branch information
nazunalika committed May 10, 2024
1 parent cfa4bc8 commit 7d54ace
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mangle/generators/oval.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ TEMP="$(mktemp -d)"
for version in 8 9; do
file="$TEMP/org.rockylinux.rlsa-$version.xml"
log "Generating $file"
podman run --rm --storage-opt ignore_chown_errors=true ghcr.io/rocky-linux/oval:latest -- $version > "$file"
#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"
log "Compressing $file to $file.bz"
bzip2 -kfz "$file"
done
Expand Down

0 comments on commit 7d54ace

Please sign in to comment.