From 7d54ace28e59291b40645d11bdb0b916a47eb261 Mon Sep 17 00:00:00 2001 From: Louis Abel Date: Fri, 10 May 2024 01:36:29 -0700 Subject: [PATCH] mangle: oval.sh contains a broken podman command --- mangle/generators/oval.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mangle/generators/oval.sh b/mangle/generators/oval.sh index 1a99d6b..b75a4c6 100644 --- a/mangle/generators/oval.sh +++ b/mangle/generators/oval.sh @@ -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