Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix package name for libpam-pkcs11 on Ubuntu #11854

Merged
merged 1 commit into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -4,6 +4,8 @@
{{% set smartcard_packages = ['pam_pkcs11', 'mozilla-nss', 'mozilla-nss-tools', 'pcsc-ccid', 'pcsc-lite', 'pcsc-tools', 'opensc'] %}}
{{% elif product in ["rhel7", "ol7"] %}}
{{% set smartcard_packages = ['pam_pkcs11'] %}}
{{% elif 'ubuntu' in product %}}
{{% set smartcard_packages = ['libpam-pkcs11'] %}}
{{% else %}}
{{% set smartcard_packages = ['openssl-pkcs11'] %}}
{{% endif %}}
Expand Down
1 change: 1 addition & 0 deletions products/ubuntu2204/product.yml
Expand Up @@ -45,6 +45,7 @@ platform_package_overrides:
pam: libpam-runtime
shadow: login
sssd: sssd-common
openssl-pkcs11: libpam-pkcs11

reference_uris:
cis: 'https://www.cisecurity.org/benchmark/ubuntu_linux/'
1 change: 1 addition & 0 deletions tests/data/product_stability/ubuntu2204.yml
Expand Up @@ -48,6 +48,7 @@ platform_package_overrides:
not_aarch64_arch: null
not_s390x_arch: null
nss-pam-ldapd: libpam-ldap
openssl-pkcs11: libpam-pkcs11
ovirt: null
pam: libpam-runtime
s390x_arch: null
Expand Down