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