Uninstall abrt-plugin-rhtsupport Package
An XCCDF Rule
Description
The abrt-plugin-rhtsupport
package can be removed with the following command:
$ sudo dnf erase abrt-plugin-rhtsupport
Rationale
abrt-plugin-rhtsupport
is a ABRT plugin to report bugs into the
Red Hat Support system.
- ID
- xccdf_org.ssgproject.content_rule_package_abrt-plugin-rhtsupport_removed
- Severity
- Low
- References
- Updated
Remediation - Anaconda Pre-Install Instructions
package --remove=abrt-plugin-rhtsupport
Remediation - Ansible
- name: Ensure abrt-plugin-rhtsupport is removed
package:
name: abrt-plugin-rhtsupport
state: absent
tags:
- disable_strategy
Remediation - Puppet
include remove_abrt-plugin-rhtsupport
class remove_abrt-plugin-rhtsupport {
package { 'abrt-plugin-rhtsupport':
ensure => 'purged',
}
Remediation - Shell Script
# CAUTION: This remediation script will remove abrt-plugin-rhtsupport
# from the system, and may remove any packages
# that depend on abrt-plugin-rhtsupport. Execute this
# remediation AFTER testing on a non-production
# system!