Skip to content

Commit

Permalink
Fix hardcoded value for testing oval references
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mpurg committed Nov 18, 2024
1 parent ba8ef80 commit ca52b77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-scripts/verify_references.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')

Expand Down

0 comments on commit ca52b77

Please sign in to comment.