mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
2321514e93
Note: Still have to add build stuff - not ready yet.
(This used to be commit 1de7022f98
)
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
|