Skip to content

Uninstall abrt-cli Package

An XCCDF Rule

Description

The abrt-cli package can be removed with the following command:

$ sudo yum erase abrt-cli

Rationale

abrt-cli contains a command line client for controlling abrt daemon over sockets.

ID
xccdf_org.ssgproject.content_rule_package_abrt-cli_removed
Severity
Low
References
Updated



Remediation - Anaconda Pre-Install Instructions


package --remove=abrt-cli

Remediation - Ansible

- name: Ensure abrt-cli is removed
  package:
    name: abrt-cli
    state: absent
  tags:
  - DISA-STIG-RHEL-08-040001

Remediation - Puppet

include remove_abrt-cli

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

Remediation - Shell Script


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