Skip to content

Uninstall libreport-plugin-logger Package

An XCCDF Rule

Description

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

$ sudo yum erase libreport-plugin-logger

Rationale

libreport-plugin-logger is a ABRT plugin to report bugs into the Red Hat Support system.

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



Remediation - Anaconda Pre-Install Instructions


package --remove=libreport-plugin-logger

Remediation - Ansible

- name: Ensure libreport-plugin-logger is removed
  package:
    name: libreport-plugin-logger
    state: absent
  tags:
  - DISA-STIG-RHEL-08-040001

Remediation - Puppet

include remove_libreport-plugin-logger

class remove_libreport-plugin-logger {
  package { 'libreport-plugin-logger':
    ensure => 'purged',
  }

Remediation - Shell Script


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