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 dnf remove 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 Templates

An Ansible Snippet

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

script:bootc

dnf remove abrt-plugin-logger

script:kickstart

package remove abrt-plugin-logger

A Puppet Snippet

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

Anaconda Pre-Install Instructions

package --remove=abrt-plugin-logger

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