Install the pcsc-lite package
An XCCDF Rule
Description
The pcsc-lite
package can be installed with the following command:
$ sudo dnf install pcsc-lite
Rationale
The pcsc-lite package must be installed if it is to be available for multifactor authentication using smartcards.
- ID
- xccdf_org.ssgproject.content_rule_package_pcsc-lite_installed
- Severity
- Medium
- References
- Updated
Remediation - script:kickstart
package install pcsc-lite
Remediation - script:bootc
dnf install pcsc-lite
Remediation - Puppet
include install_pcsc-lite
class install_pcsc-lite {
package { 'pcsc-lite':
ensure => 'installed',
}
Remediation - Ansible
- name: Gather the package facts
package_facts:
manager: auto
tags:
- NIST-800-53-CM-6(a)
- enable_strategy
Remediation - OS Build Blueprint
[[packages]]
name = "pcsc-lite"
version = "*"
Remediation - Anaconda Pre-Install Instructions
package --add=pcsc-lite
Remediation - Shell Script
# Remediation is applicable only in certain platforms
if rpm --quiet -q kernel; then
if ! rpm -q --quiet "pcsc-lite" ; then
dnf install -y "pcsc-lite"
fi