blob: d6ff43924ac1ef5ab38cfb8afbae601e48129261 (
plain)
1
2
3
4
5
6
7
8
9
|
post_install() {
echo 'To finish Biopass setup process, add following lines:'
echo 'auth [success=2 default=ignore] libbiopass_pam.so'
echo 'auth [success=1 default=ignore] pam_unix.so nullok'
echo 'auth requisite pam_deny.so'
echo 'to either:'
echo '- `/etc/pam.d/system-auth` file just before `pam_unix.so` for global auth'
echo '- `/etc/pam.d/sudo` at the beginning for `sudo` use only'
}
|