Skip to content

Uninstall abrt-plugin-sosreport Package

An XCCDF Rule

Description

The abrt-plugin-sosreport package can be removed with the following command:
$ sudo dnf remove abrt-plugin-sosreport

Rationale

abrt-plugin-sosreport provides a plugin to include an sosreport in an ABRT report.

ID
xccdf_org.ssgproject.content_rule_package_abrt-plugin-sosreport_removed
Severity
Low
References
Updated

Remediation Templates

A Puppet Snippet

include remove_abrt-plugin-sosreport
class remove_abrt-plugin-sosreport {
  package { 'abrt-plugin-sosreport':
    ensure => 'purged',
  }
}

An Ansible Snippet

- name: Ensure abrt-plugin-sosreport is removed
  package:
    name: abrt-plugin-sosreport
    state: absent
  tags:
  - disable_strategy

script:kickstart

package remove abrt-plugin-sosreport

script:bootc

dnf remove abrt-plugin-sosreport

Anaconda Pre-Install Instructions

package --remove=abrt-plugin-sosreport

A Shell Script

# CAUTION: This remediation script will remove abrt-plugin-sosreport
#	   from the system, and may remove any packages
#	   that depend on abrt-plugin-sosreport. Execute this
#	   remediation AFTER testing on a non-production
#	   system!