Uninstall abrt-addon-ccpp Package
An XCCDF Rule
Description
The abrt-addon-ccpp
package can be removed with the following command:
$ sudo yum erase abrt-addon-ccpp
Rationale
abrt-addon-ccpp
contains hooks for C/C++ crashed programs and abrt
's
C/C++ analyzer plugin.
- ID
- xccdf_org.ssgproject.content_rule_package_abrt-addon-ccpp_removed
- Severity
- Low
- Updated
Remediation - Puppet
include remove_abrt-addon-ccpp
class remove_abrt-addon-ccpp {
package { 'abrt-addon-ccpp':
ensure => 'purged',
}
Remediation - Shell Script
# CAUTION: This remediation script will remove abrt-addon-ccpp
# from the system, and may remove any packages
# that depend on abrt-addon-ccpp. Execute this
# remediation AFTER testing on a non-production
# system!
Remediation - Anaconda Pre-Install Instructions
package --remove=abrt-addon-ccpp
Remediation - Ansible
- name: Ensure abrt-addon-ccpp is removed
package:
name: abrt-addon-ccpp
state: absent
tags:
- DISA-STIG-RHEL-08-040001