From 99bc618c1bd3b54535cca40299fbe9e9242d9ce2 Mon Sep 17 00:00:00 2001 From: Evgeny Kolesnikov Date: Fri, 14 Jul 2023 14:35:22 +0200 Subject: [PATCH] Allow verify_references.py to identify RH OVALv2 feed IDs as remote Switch to RH OVALv2 feeds caused verify_references.py to fail because new ID template has not been filtered out as a remote source. --- build-scripts/verify_references.py | 1 + 1 file changed, 1 insertion(+) diff --git a/build-scripts/verify_references.py b/build-scripts/verify_references.py index 163250647f9..c65623e6774 100755 --- a/build-scripts/verify_references.py +++ b/build-scripts/verify_references.py @@ -132,6 +132,7 @@ def get_profileruleids(xccdftree, profile_name): def is_remote_feed(href): return href.startswith("http://") or \ href.startswith("https://") or \ + 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 \