Skip to content

Install the pcsc-lite package

An XCCDF Rule

Description

The pcsc-lite package can be installed with the following command:
$ sudo yum 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 Templates

A Puppet Snippet

include install_pcsc-lite
class install_pcsc-lite {
  package { 'pcsc-lite':
    ensure => 'installed',
  }
}

An Ansible Snippet

- name: Gather the package facts
  package_facts:
    manager: auto
  tags:
  - NIST-800-53-CM-6(a)
  - enable_strategy

script:kickstart

package install pcsc-lite

OS Build Blueprint

[[packages]]
name = "pcsc-lite"
version = "*"

script:bootc

dnf install pcsc-lite

Anaconda Pre-Install Instructions

package --add=pcsc-lite

A Shell Script

# Remediation is applicable only in certain platforms
if rpm --quiet -q kernel; then
if ! rpm -q --quiet "pcsc-lite" ; then
    yum install -y "pcsc-lite"
fi