Skip to content

Install scap-security-guide Package

An XCCDF Rule

Description

The scap-security-guide package can be installed with the following command:
$ sudo yum install scap-security-guide

Rationale

The scap-security-guide package provides a guide for configuration of the system from the final system's security point of view. The guidance is specified in the Security Content Automation Protocol (SCAP) format and constitutes a catalog of practical hardening advice, linked to government requirements where applicable. The SCAP Security Guide project bridges the gap between generalized policy requirements and specific implementation guidelines. A system administrator can use the oscap CLI tool from the openscap-scanner package, or the SCAP Workbench GUI tool from the scap-workbench package, to verify that the system conforms to provided guidelines. Refer to the scap-security-guide(8) manual page for futher information.

ID
xccdf_org.ssgproject.content_rule_package_scap-security-guide_installed
Severity
Medium
References
Updated

Remediation Templates

A Puppet Snippet

include install_scap-security-guide
class install_scap-security-guide {
  package { 'scap-security-guide':
    ensure => 'installed',
  }
}

An Ansible Snippet

- name: Ensure scap-security-guide is installed
  package:
    name: scap-security-guide
    state: present
  tags:
  - enable_strategy

OS Build Blueprint

[[packages]]
name = "scap-security-guide"
version = "*"

Anaconda Pre-Install Instructions

package --add=scap-security-guide

A Shell Script

if ! rpm -q --quiet "scap-security-guide" ; then
    yum install -y "scap-security-guide"
fi