Skip to content

Uninstall abrt-addon-kerneloops Package

An XCCDF Rule

Description

The abrt-addon-kerneloops package can be removed with the following command:

$ sudo yum erase abrt-addon-kerneloops

Rationale

abrt-addon-kerneloops contains plugins for collecting kernel crash information and reporter plugin which sends this information to a specified server, usually to kerneloops.org.

ID
xccdf_org.ssgproject.content_rule_package_abrt-addon-kerneloops_removed
Severity
Low
References
Updated



Remediation - Anaconda Pre-Install Instructions


package --remove=abrt-addon-kerneloops

Remediation - Ansible

- name: Ensure abrt-addon-kerneloops is removed
  package:
    name: abrt-addon-kerneloops
    state: absent
  tags:
  - CCE-82926-7

Remediation - Shell Script


# CAUTION: This remediation script will remove abrt-addon-kerneloops
#	   from the system, and may remove any packages
#	   that depend on abrt-addon-kerneloops. Execute this
#	   remediation AFTER testing on a non-production
#	   system!

Remediation - Puppet

include remove_abrt-addon-kerneloops

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