
This reverts commit 8c1fb8d471af1c54f9a2e2e31a455227570e54d5. Reason for revert: see https://review.opendev.org/c/starlingx/stx-puppet/+/870667 Partial-Bug: 1999049 Change-Id: I33c2dda6c20b2547a66b8f3feaccd00f80d7ad8a
23 lines
1.1 KiB
Plaintext
Executable File
23 lines
1.1 KiB
Plaintext
Executable File
#
|
|
# /etc/pam.d/common-session - session-related modules common to all services
|
|
#
|
|
# This file is included from other service-specific PAM config files,
|
|
# and should contain a list of modules that define tasks to be performed
|
|
# at the start and end of sessions of *any* kind (both interactive and
|
|
# non-interactive).
|
|
#
|
|
|
|
# here are the per-package modules (the "Primary" block)
|
|
session [default=1] pam_permit.so
|
|
# here's the fallback if no module succeeds
|
|
session requisite pam_deny.so
|
|
# prime the stack with a positive return value if there isn't one already;
|
|
# this avoids us returning an error just because nothing sets a success code
|
|
# since the modules above will each just jump around
|
|
session required pam_permit.so
|
|
# and here are more per-package modules (the "Additional" block)
|
|
session [success=1 new_authtok_reqd=done default=ignore] pam_unix.so
|
|
session [success=ok new_authtok_reqd=done default=bad] pam_sss.so
|
|
session required pam_mkhomedir.so umask=0022 skel=/etc/skel
|
|
session optional pam_systemd.so
|