Skip to content

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 zypper remove 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 - Ansible

- name: Gather the package facts
  package_facts:
    manager: auto
  tags:
  - CCE-91580-1
  - disable_strategy

Remediation - Shell Script

# Remediation is applicable only in certain platforms
if rpm --quiet -q kernel-default; then

# CAUTION: This remediation script will remove setroubleshoot-server
#	   from the system, and may remove any packages
#	   that depend on setroubleshoot-server. Execute this

Remediation - Puppet

include remove_setroubleshoot-server

class remove_setroubleshoot-server {
  package { 'setroubleshoot-server':
    ensure => 'purged',
  }