- Suppress PAM warning when the credentials for user@.service service

are established (bsc#1190515)
  systemd-user PAM service needs to define a default implementation of
  pam_setcred() otherwise the fallback (defined by /etc/pam.d/other)
  is used, which consists of pam_warn.so + pam_deny.so, and will throw
  a warning each time a user logs in.

OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=1197
This commit is contained in:
Franck Bui 2021-10-06 08:03:55 +00:00 committed by Git OBS Bridge
parent 88bdc07101
commit a00cc781ce
3 changed files with 26 additions and 2 deletions

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Wed Oct 6 07:40:24 UTC 2021 - Franck Bui <fbui@suse.com>
- Suppress PAM warning when the credentials for user@.service service
are established (bsc#1190515)
systemd-user PAM service needs to define a default implementation of
pam_setcred() otherwise the fallback (defined by /etc/pam.d/other)
is used, which consists of pam_warn.so + pam_deny.so, and will throw
a warning each time a user logs in.
-------------------------------------------------------------------
Mon Oct 4 14:40:12 UTC 2021 - Franck Bui <fbui@suse.com>

View File

@ -2,8 +2,10 @@
#
# Used by systemd --user instances.
account include common-account
auth required pam_permit.so
account include common-account
session required pam_selinux.so close
session required pam_selinux.so nottys open
session include common-session
session include common-session

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Wed Oct 6 07:40:24 UTC 2021 - Franck Bui <fbui@suse.com>
- Suppress PAM warning when the credentials for user@.service service
are established (bsc#1190515)
systemd-user PAM service needs to define a default implementation of
pam_setcred() otherwise the fallback (defined by /etc/pam.d/other)
is used, which consists of pam_warn.so + pam_deny.so, and will throw
a warning each time a user logs in.
-------------------------------------------------------------------
Mon Oct 4 14:40:12 UTC 2021 - Franck Bui <fbui@suse.com>