4

I followed [this set of instructions] for adding Touch ID authentication to sudo, but it's not working. Almost all the post/questions I found on the internet was more or less same and also they were almost 1 year old (June 2022).

Is this because Apple removed the feature or something?

Here's my /etc/pam.d/sudo

# sudo: auth account password session
auth       sufficient     pam_tid.so
auth       sufficient     pam_smartcard.so
auth       required       pam_opendirectory.so
account    required       pam_permit.so
password   required       pam_deny.so
session    required       pam_permit.so
Sanaf
  • 143

1 Answers1

2

If you are using tmux, you would need to set up pam_reattach for it to work.

Erikw
  • 171