
Remove pam_systemd.so from /etc/pam.d/common-session since it was causing a performance hit with mtcClient running at the same time. Test Plan on Debian: PASS: package build, image build PASS: system installation, bootstrap and unlock PASS: console login by sysadmin. Observed that home directory is created the first time the user login. PASS: su to sysdmin. Observed that home directory is created the first time the user is su to. PASS: wait for timeout, log back in, and run system host-unlock controller-0 PASS: check for systemd --user processes. Story: 2009965 Task: 45290 Signed-off-by: Charles Short <charles.short@windriver.com> Change-Id: Ida555ade017ddebd50fc02d703f177026c498957
22 lines
1.0 KiB
Plaintext
Executable File
22 lines
1.0 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
|