Uninstall gssproxy Package
An XCCDF Rule
Description
The gssproxy
package can be removed with the following command:
$ sudo dnf erase gssproxy
Rationale
gssproxy
is a proxy for GSS API credential handling.
- ID
- xccdf_org.ssgproject.content_rule_package_gssproxy_removed
- Severity
- Medium
- Updated
Remediation - Ansible
- name: Ensure gssproxy is removed
package:
name: gssproxy
state: absent
tags:
- disable_strategy
Remediation - Puppet
include remove_gssproxy
class remove_gssproxy {
package { 'gssproxy':
ensure => 'purged',
}
Remediation - Shell Script
# CAUTION: This remediation script will remove gssproxy
# from the system, and may remove any packages
# that depend on gssproxy. Execute this
# remediation AFTER testing on a non-production
# system!