Uninstall setroubleshoot-server Package
An XCCDF Rule
Description
The SETroubleshoot service notifies desktop users of SELinux
denials. The service provides information around configuration errors,
unauthorized intrusions, and other potential errors.
The setroubleshoot-server
package can be removed with the following command:
$ sudo yum erase setroubleshoot-server
Rationale
The SETroubleshoot service is an unnecessary daemon to have running on a server.
- ID
- xccdf_org.ssgproject.content_rule_package_setroubleshoot-server_removed
- Severity
- Low
- References
- Updated
Remediation - Puppet
include remove_setroubleshoot-server
class remove_setroubleshoot-server {
package { 'setroubleshoot-server':
ensure => 'purged',
}
Remediation - Ansible
- name: Gather the package facts
package_facts:
manager: auto
tags:
- disable_strategy
- low_complexity
Remediation - Anaconda Pre-Install Instructions
package --remove=setroubleshoot-server
Remediation - Shell Script
# Remediation is applicable only in certain platforms
if rpm --quiet -q kernel; then
# CAUTION: This remediation script will remove setroubleshoot-server
# from the system, and may remove any packages
# that depend on setroubleshoot-server. Execute this