From ca52b777f53f5bb25a6f07cbfa992f47c3c2af2f Mon Sep 17 00:00:00 2001 From: Miha Purg Date: Mon, 18 Nov 2024 13:32:59 +0100 Subject: [PATCH] Fix hardcoded value for testing oval references The ctest verify-references-ssg-*-ds.xml failed after changing oval_feed_url to point to new urls, due to too many oval references in datastream. Reason was the the new name of the OVAL feed was no longer excluded in verify_references.py and was considered as a regular OVAL file. --- build-scripts/verify_references.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-scripts/verify_references.py b/build-scripts/verify_references.py index 35aa30a2b77..8d03a795f2e 100755 --- a/build-scripts/verify_references.py +++ b/build-scripts/verify_references.py @@ -135,7 +135,7 @@ def is_remote_feed(href): href.startswith("security-data-oval-v2-") or \ href.startswith("security-data-oval-com.redhat.rhsa-") or \ href.startswith("security-oval-com.oracle") or \ - href.startswith("-ubuntu-security-oval-com.ubuntu") or \ + href.startswith("oval-com.ubuntu") or \ href.startswith("pub-projects-security-oval-suse") or \ href.startswith('security-oval-oval-definitions-bookworm')