mirror of
https://github.com/samba-team/samba.git
synced 2025-01-27 14:04:05 +03:00
19 lines
813 B
Plaintext
19 lines
813 B
Plaintext
|
#%PAM-1.0
|
||
|
# password-migration
|
||
|
#
|
||
|
# A sample PAM configuration that shows the use of pam_smbpass to migrate
|
||
|
# from plaintext to encrypted passwords for Samba. Unlike other methods,
|
||
|
# this can be used for users who have never connected to Samba shares:
|
||
|
# password migration takes place when users ftp in, login using ssh, pop
|
||
|
# their mail, etc.
|
||
|
|
||
|
auth requisite pam_nologin.so
|
||
|
# pam_smbpass is called IFF pam_unix succeeds.
|
||
|
auth requisite pam_unix.so
|
||
|
auth optional pam_smbpass.so migrate
|
||
|
account required pam_unix.so
|
||
|
password requisite pam_cracklib.so retry=3
|
||
|
password requisite pam_unix.so shadow md5 use_authtok try_first_pass
|
||
|
password optional pam_smbpass.so nullok use_authtok try_first_pass
|
||
|
session required pam_unix.so
|