El problema
Los mensajes de error del servicio fprintd como los siguientes se registran incluso en el caso USEFPRINTD=no se ha configurado en /etc/sysconfig/authconfig .
Jan 22 13:58:09 hostname dbus[914]: [system] Activating via systemd: service name='net.reactivated.Fprint' unit='fprintd.service' Jan 22 13:58:09 hostname dbus-daemon: dbus[914]: [system] Activating via systemd: service name='net.reactivated.Fprint' unit='fprintd.service' Jan 22 13:58:09 hostname fprintd: ** (fprintd:45376): WARNING **: fprint init failed with error -99 Jan 22 13:58:09 hostname systemd: fprintd.service: main process exited, code=exited, status=157/n/a Jan 22 13:58:09 hostname systemd: Unit fprintd.service entered failed state. Jan 22 13:58:09 hostname systemd: fprintd.service failed.
Esto sucede incluso después de ejecutar el comando para deshabilitar fprintd:
# authconfig --disablefingerprint --update
La solución
fprintd es un servicio estático, que podría ser iniciado por alguien que envíe el mensaje "net.reactivated.Fprint ” en el sistema Dbus incluso en el caso USEFPRINTD=no en /etc/sysconfig/authconfig.
# cat /usr/share/dbus-1/system-services/net.reactivated.Fprint.service [D-BUS Service] Name=net.reactivated.Fprint Exec=/usr/libexec/fprintd User=root SystemdService=fprintd.service
# systemctl list-unit-files | grep fprintd fprintd.service static
Para resolver este problema, desinstale el paquete "fprintd" para eliminar los mensajes, si no es necesaria la autorización de la huella digital.
# yum remove fprintd
o
# rpm -e fprintd
Si se instaló el paquete dependiente "fprintd-pam", elimínelo antes de eliminar fprintd.