Skip to content

Uninstall abrt-addon-python Package

An XCCDF Rule

Description

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

$ sudo yum erase abrt-addon-python

Rationale

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

ID
xccdf_org.ssgproject.content_rule_package_abrt-addon-python_removed
Severity
Low
References
Updated



Remediation - Puppet

include remove_abrt-addon-python

class remove_abrt-addon-python {
  package { 'abrt-addon-python':
    ensure => 'purged',
  }

Remediation - Shell Script


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

Remediation - Anaconda Pre-Install Instructions


package --remove=abrt-addon-python

Remediation - Ansible

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