Install the SSSD Package
An XCCDF Rule
Description
The sssd
package should be installed.
The sssd
package can be installed with the following command:
$ sudo yum install sssd
- ID
- xccdf_org.ssgproject.content_rule_package_sssd_installed
- Severity
- Medium
- References
- Updated
Remediation - Anaconda Pre-Install Instructions
package --add=sssd
Remediation - OS Build Blueprint
[[packages]]
name = "sssd"
version = "*"
Remediation - Ansible
- name: Gather the package facts
package_facts:
manager: auto
tags:
- CCE-82444-1
- NIST-800-53-CM-6(a)
Remediation - Puppet
include install_sssd
class install_sssd {
package { 'sssd':
ensure => 'installed',
}
Remediation - Shell Script
# Remediation is applicable only in certain platforms
if rpm --quiet -q sssd-common; then
if ! rpm -q --quiet "sssd" ; then
yum install -y "sssd"
fi