Bugzilla – Bug 1017166
pcscd not listen in YaST2 services, though pcsc-lite installed
Last modified: 2018-10-26 07:35:41 UTC
I installed pcsc-lite and other pcsc-* packages. pcsc-lite contains /usr/lib/systemd/system/pcscd.service /usr/lib/systemd/system/pcscd.socket but pcscd not listen in YaST2 services
The problem is that the state of pcscd service is "indirect" and that's not handled properly by YaST. I'm adding this bug to our SCRUM incoming board so we can plan for it.
A fix is in review: https://github.com/yast/yast-services-manager/pull/117/files Maint. team would you like to have a maint. update ?
pcscd will be shown now in the YaST module
Has already been answered in another bug. Thanks !
SUSE-RU-2017:1123-1: An update that has three recommended fixes can now be installed. Category: recommended (low) Bug References: 1012047,1017166,956043 CVE References: Sources used: SUSE Linux Enterprise Server for Raspberry Pi 12-SP2 (src): yast2-services-manager-3.1.44-5.6.12 SUSE Linux Enterprise Server 12-SP2 (src): yast2-services-manager-3.1.44-5.6.12 SUSE Linux Enterprise Desktop 12-SP2 (src): yast2-services-manager-3.1.44-5.6.12
openSUSE-RU-2017:1202-1: An update that has three recommended fixes can now be installed. Category: recommended (low) Bug References: 1012047,1017166,956043 CVE References: Sources used: openSUSE Leap 42.2 (src): yast2-services-manager-3.1.44-20.3.1
(In reply to Imobach Gonzalez Sosa from comment #1) > the state of pcscd service is "indirect" There is no such thing as "the state". systemd distinguishes several kinds of states. For example # systemctl show pcscd.socket pcscd.service| grep -E State\|Id\|^$ Id=pcscd.socket LoadState=loaded ActiveState=active SubState=running UnitFileState=disabled Id=pcscd.service LoadState=loaded ActiveState=active SubState=running UnitFileState=indirect For active/inactive, we are interested in ActiveState. For enabled/disabled, we are interested in UnitFileState (but it may be "bad", see the other bug 1012047)