Skip to content

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
References
Updated

Remediation Templates

An Ansible Snippet

- name: Ensure abrt-libs is removed
  package:
    name: abrt-libs
    state: absent
  tags:
  - DISA-STIG-OL08-00-040001

A Puppet Snippet

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

Anaconda Pre-Install Instructions

package --remove=abrt-libs

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