mirror of
https://abf.rosa.ru/djam/pam.git
synced 2025-02-23 16:32:51 +00:00
migration from pam_tcb to pam_unix
This commit is contained in:
parent
12904603ff
commit
b6af014454
2 changed files with 6 additions and 6 deletions
2
pam.spec
2
pam.spec
|
@ -19,7 +19,7 @@ Epoch: 1
|
||||||
Summary: A security tool which provides authentication for applications
|
Summary: A security tool which provides authentication for applications
|
||||||
Name: pam
|
Name: pam
|
||||||
Version: 1.1.4
|
Version: 1.1.4
|
||||||
Release: 11
|
Release: 12
|
||||||
# The library is BSD licensed with option to relicense as GPLv2+ - this option is redundant
|
# The library is BSD licensed with option to relicense as GPLv2+ - this option is redundant
|
||||||
# as the BSD license allows that anyway. pam_timestamp and pam_console modules are GPLv2+,
|
# as the BSD license allows that anyway. pam_timestamp and pam_console modules are GPLv2+,
|
||||||
License: BSD and GPLv2+
|
License: BSD and GPLv2+
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
#%PAM-1.0
|
#%PAM-1.0
|
||||||
|
|
||||||
auth required pam_env.so
|
auth required pam_env.so
|
||||||
auth sufficient pam_tcb.so shadow nullok prefix=$2a$ count=8
|
auth sufficient pam_unix.so try_first_pass nullok
|
||||||
auth required pam_deny.so
|
auth required pam_deny.so
|
||||||
|
|
||||||
account required pam_tcb.so shadow
|
account required pam_unix.so
|
||||||
|
|
||||||
password required pam_cracklib.so try_first_pass retry=3
|
password required pam_cracklib.so try_first_pass use_authtok retry=3
|
||||||
password sufficient pam_tcb.so shadow write_to=shadow nullok prefix=$2a$ count=8
|
password sufficient pam_unix.so try_first_pass shadow nullok md5
|
||||||
password required pam_deny.so
|
password required pam_deny.so
|
||||||
|
|
||||||
session optional pam_keyinit.so revoke
|
session optional pam_keyinit.so revoke
|
||||||
session required pam_limits.so
|
session required pam_limits.so
|
||||||
session [success=1 default=ignore] pam_succeed_if.so service in crond quiet use_uid
|
session [success=1 default=ignore] pam_succeed_if.so service in crond quiet use_uid
|
||||||
session required pam_tcb.so
|
session required pam_unix.so
|
||||||
-session optional pam_systemd.so
|
-session optional pam_systemd.so
|
||||||
|
|
Loading…
Add table
Reference in a new issue