Blame SOURCES/scap-security-guide-0.1.61-fix_bug_in_delta_tailering_script-PR_8245.patch

405587
From 50eb163d9e9751c2e8cf8129523a8cf7e07a5930 Mon Sep 17 00:00:00 2001
405587
From: Matthew Burket <mburket@redhat.com>
405587
Date: Thu, 17 Feb 2022 12:49:32 -0600
405587
Subject: [PATCH] get_implemented_stigs in utils/create_scap_delta_tailoring.py
405587
 should return the implemented stig items
405587
405587
---
405587
 utils/create_scap_delta_tailoring.py | 1 +
405587
 1 file changed, 1 insertion(+)
405587
405587
diff --git a/utils/create_scap_delta_tailoring.py b/utils/create_scap_delta_tailoring.py
405587
index 2c3c5d0df32..25ad1aef66e 100755
405587
--- a/utils/create_scap_delta_tailoring.py
405587
+++ b/utils/create_scap_delta_tailoring.py
405587
@@ -127,6 +127,7 @@ def get_implemented_stigs(product, root_path, build_config_yaml_path,
405587
                 known_rules[ref].append(rule['id'])
405587
             else:
405587
                 known_rules[ref] = [rule['id']]
405587
+    return known_rules
405587
 
405587
 
405587
 get_implemented_stigs.__annotations__ = {'product': str, 'root_path': str,