Uninstall abrt-libs Package
An XCCDF Rule
Description
The abrt-libs
package can be removed with the following command:
$ sudo yum erase abrt-libs
Rationale
abrt-libs
provides libraries for the ABRT package.
- ID
- xccdf_org.ssgproject.content_rule_package_abrt-libs_removed
- Severity
- Medium
- Updated
Remediation - Ansible
- name: Ensure abrt-libs is removed
package:
name: abrt-libs
state: absent
tags:
- DISA-STIG-OL08-00-040001
Remediation - Puppet
include remove_abrt-libs
class remove_abrt-libs {
package { 'abrt-libs':
ensure => 'purged',
}
Remediation - Shell Script
# CAUTION: This remediation script will remove abrt-libs
# from the system, and may remove any packages
# that depend on abrt-libs. Execute this
# remediation AFTER testing on a non-production
# system!
Remediation - Anaconda Pre-Install Instructions
package --remove=abrt-libs