- fix(multipath): disable user_friendly_names with mpathconf - fix(pcsc): add opensc load module file - fix(pcsc): add --disable-polkit to pcscd.service - fix(pkcs11): delete trailing dot on libcryptsetup-token-systemd-pkcs11.so - fix(systemd-repart): allow partition format - feat(install.d):according to the changes of systemd/systemd#37897, When --entry-type=type2 is used (for UKI), will not remove normal kernel IMAGE. Resolves: https://issues.redhat.com/browse/RHEL-103974 - feat(i18n): pull 'drm' or 'simpledrm' module unless excluded Resolves: RHEL-103385,RHEL-103974,RHEL-109631,RHEL-145135,RHEL-91322
30 lines
1011 B
Diff
30 lines
1011 B
Diff
From 95ba74588df2683574f299eb7f31862489e325ed Mon Sep 17 00:00:00 2001
|
|
From: Manuel Fombuena <mfombuena@innovara.co.uk>
|
|
Date: Fri, 3 Nov 2023 09:04:53 +0000
|
|
Subject: [PATCH] fix(pcsc): add opensc load module file
|
|
|
|
On Fedora, and possibly others, this file loads opensc-pkcs11.so which you need to interact with the smart card to unlock a LUKS encrypted volume.
|
|
|
|
(cherry picked from commit e9baea97fb5dec6fb26ceaebb3e580bf272da2b8)
|
|
|
|
Resolves: RHEL-109631
|
|
---
|
|
modules.d/91pcsc/module-setup.sh | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/modules.d/91pcsc/module-setup.sh b/modules.d/91pcsc/module-setup.sh
|
|
index 6f8b2c88..26b463d4 100755
|
|
--- a/modules.d/91pcsc/module-setup.sh
|
|
+++ b/modules.d/91pcsc/module-setup.sh
|
|
@@ -29,7 +29,8 @@ install() {
|
|
inst_simple "$moddir/pcscd.socket" "${systemdsystemunitdir}"/pcscd.socket
|
|
|
|
inst_multiple -o \
|
|
- pcscd
|
|
+ pcscd \
|
|
+ /usr/share/p11-kit/modules/opensc.module
|
|
|
|
# Enable systemd type unit(s)
|
|
for i in \
|
|
|