Skip to content

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
References
Updated

Remediation Templates

An Ansible Snippet

- name: Ensure abrt-addon-ccpp is removed
  package:
    name: abrt-addon-ccpp
    state: absent
  tags:
  - disable_strategy

Anaconda Pre-Install Instructions

package --remove=abrt-addon-ccpp

A Puppet Snippet

include remove_abrt-addon-ccpp
class remove_abrt-addon-ccpp {
  package { 'abrt-addon-ccpp':
    ensure => 'purged',
  }
}

A 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!