GNOME Bugzilla – Bug 683131
Fingerprint authentication configured but never used
Last modified: 2017-03-22 13:27:19 UTC
Ray helped me debug this, basically, the login/lock screen never prompt to use my configured fingerprint because fprintd wasn't being launched with the right DBUS flags. Or something. I'm hoping this will jog his memory. :)
regression caused by bug 675006
(In reply to comment #1) > regression caused by bug 675006 Given that bug 675006 is fixed ... is there anything left here?
yea, my "fix" in bug 675006 actually broke things. I need to fix it, properly.
Created attachment 224267 [details] [review] fingerprint: autostart fprintd when necessary commit e333263fd646cee7b235e181db7dd96a6bf0735e changed fingerprint.js to not throw an exception when fprintd is uninstalled, by adding the flags DO_NOT_LOAD_PROPERTIES and DO_NOT_AUTO_START DO_NOT_LOAD_PROPERTIES is correct. Loading the properties is what makes it fail at initialization time when not installed. DO_NOT_AUTO_START is not correct though. It means fprintd will never get activated implicitly when we need it. This commit removes DO_NOT_AUTO_START thus making fprintd start when we need it, but not fail at initialization time when not around.
Review of attachment 224267 [details] [review]: OK.
Attachment 224267 [details] pushed as 638507c - fingerprint: autostart fprintd when necessary
(In reply to Ray Strode [halfline] from comment #3) > yea, my "fix" in bug 675006 actually broke things. I need to fix it, > properly. third times a charm? see bug 780063