Uninstall abrt-plugin-logger Package
An XCCDF Rule
Description
Theabrt-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 Templates
A Puppet Snippet
include remove_abrt-plugin-logger
class remove_abrt-plugin-logger {
package { 'abrt-plugin-logger':
ensure => 'purged',
}
}
An Ansible Snippet
- name: Ensure abrt-plugin-logger is removed
package:
name: abrt-plugin-logger
state: absent
tags:
- CCE-82913-5
script:kickstart
package remove abrt-plugin-logger
script:bootc
dnf remove abrt-plugin-logger
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!