Skip to content

Uninstall python3-abrt-addon Package

An XCCDF Rule

Description

The python3-abrt-addon package can be removed with the following command:

$ sudo dnf erase python3-abrt-addon

Rationale

python3-abrt-addon contains python hook and python analyzer plugin for handling uncaught exceptions in python programs.

ID
xccdf_org.ssgproject.content_rule_package_python3-abrt-addon_removed
Severity
Low
References
Updated



Remediation - Anaconda Pre-Install Instructions


package --remove=python3-abrt-addon

Remediation - Ansible

- name: Ensure python3-abrt-addon is removed
  package:
    name: python3-abrt-addon
    state: absent
  tags:
  - disable_strategy

Remediation - Puppet

include remove_python3-abrt-addon

class remove_python3-abrt-addon {
  package { 'python3-abrt-addon':
    ensure => 'purged',
  }

Remediation - Shell Script


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