Skip to content

Commit

Permalink
Merge pull request #235 from matejak/libreport_label_rhel8
Browse files Browse the repository at this point in the history
Add libreport-plugin-rhtsupport to essential packages
  • Loading branch information
jan-cerny authored Jan 23, 2023
2 parents 6e36178 + de06edc commit 3645fb3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion org_fedora_oscap/rule_handling.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@

# Mapping of packages to package environments and/or groups that depends on them
# See also https://access.redhat.com/solutions/1201413 how to get group IDs.
# on RHEL8, use e.g. grep -R "<id>" /var/cache/dnf/*
# on RHEL8, use e.g. grep -R "<id>" /var/cache/dnf/* after running dnf grouplist,
# and use repoquery --whatrequires to get to a package that is listed in a group -
# low-level dependencies aren't.
ESSENTIAL_PACKAGES = {
"xorg-x11-server-common": {
"env": ["graphical-server-environment", "workstation-product-environment"],
Expand All @@ -52,6 +54,10 @@
"env": ["graphical-server-environment", "workstation-product-environment"],
"groups": ["workstation-product-environment"],
},
"libreport-plugin-rhtsupport": {
"env": ["graphical-server-environment", "workstation-product-environment"],
"groups": ["workstation-product-environment", "core"],
},
"tftp": {
"groups": ["network-server"],
},
Expand Down

0 comments on commit 3645fb3

Please sign in to comment.