Skip to content

Uninstall abrt-plugin-rhtsupport Package

An XCCDF Rule

Description

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

Rationale

abrt-plugin-rhtsupport is a ABRT plugin to report bugs into the Red Hat Support system.

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

Remediation Templates

An Ansible Snippet

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

script:kickstart

package remove abrt-plugin-rhtsupport

script:bootc

dnf remove abrt-plugin-rhtsupport

A Puppet Snippet

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

Anaconda Pre-Install Instructions

package --remove=abrt-plugin-rhtsupport

A Shell Script

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