Uninstall abrt-cli Package
An XCCDF Rule
Description
Theabrt-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
- Updated
Remediation Templates
An Ansible Snippet
- name: Ensure abrt-cli is removed
package:
name: abrt-cli
state: absent
tags:
- DISA-STIG-RHEL-08-040001
script:kickstart
package remove abrt-cli
script:bootc
dnf remove abrt-cli
A Puppet Snippet
include remove_abrt-cli
class remove_abrt-cli {
package { 'abrt-cli':
ensure => 'purged',
}
}
Anaconda Pre-Install Instructions
package --remove=abrt-cli
A 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!