Skip to content

Uninstall abrt-plugin-logger Package

An XCCDF Rule

Description

The abrt-plugin-logger package can be removed with the following command:

$ sudo yum erase abrt-plugin-logger

Rationale

abrt-plugin-logger is an ABRT plugin which writes a report to a specified file.

ID
xccdf_org.ssgproject.content_rule_package_abrt-plugin-logger_removed
Severity
Low
References
Updated



Remediation - Anaconda Pre-Install Instructions


package --remove=abrt-plugin-logger

Remediation - Ansible

- name: Ensure abrt-plugin-logger is removed
  package:
    name: abrt-plugin-logger
    state: absent
  tags:
  - disable_strategy

Remediation - Puppet

include remove_abrt-plugin-logger

class remove_abrt-plugin-logger {
  package { 'abrt-plugin-logger':
    ensure => 'purged',
  }

Remediation - Shell Script


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