Skip to content

Uninstall iprutils Package

An XCCDF Rule

Description

The iprutils package can be removed with the following command:

$ sudo yum erase iprutils

Rationale

iprutils provides a suite of utlilities to manage and configure SCSI devices supported by the ipr SCSI storage device driver.

ID
xccdf_org.ssgproject.content_rule_package_iprutils_removed
Severity
Medium
References
Updated



Remediation - Anaconda Pre-Install Instructions


package --remove=iprutils

Remediation - Ansible

- name: Ensure iprutils is removed
  package:
    name: iprutils
    state: absent
  tags:
  - CCE-82946-5

Remediation - Puppet

include remove_iprutils

class remove_iprutils {
  package { 'iprutils':
    ensure => 'purged',
  }

Remediation - Shell Script


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