Hacker News new | ask | show | jobs
by munin 5380 days ago
if you exec the shell on your own (and make auth decisions on your own) outside of PAM you are basically destroying meaningful logging of successful/unsuccessful authentication, right?
1 comments

You can log the events yourself. If it's a shell script, it would be as easy as:

    logger -p authpriv.notice "Some message about authentication"
That is great thank you, I was looking for something along those lines