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 dnf 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 - Anaconda Pre-Install Instructions
package --remove=setroubleshoot-server
Remediation - Ansible
- name: Ensure setroubleshoot-server is removed
package:
name: setroubleshoot-server
state: absent
when: ansible_virtualization_type not in ["docker", "lxc", "openvz", "podman", "container"]
tags:
Remediation - Shell Script
# Remediation is applicable only in certain platforms
if [ ! -f /.dockerenv ] && [ ! -f /run/.containerenv ]; then
# CAUTION: This remediation script will remove setroubleshoot-server
# from the system, and may remove any packages
# that depend on setroubleshoot-server. Execute this