diff options
author | Sam Hartman <hartmans@debian.org> | 2025-01-16 15:58:15 -0700 |
---|---|---|
committer | Sam Hartman <hartmans@debian.org> | 2025-01-16 15:58:15 -0700 |
commit | 88a4c5bf694602ae1ff3f7a96948c0648ee8f596 (patch) | |
tree | 9496ea6e6f0ef0d268b21a6275df6e628639f914 | |
parent | 3415c2576db1bab32bdea1750cf6e02920f1f43b (diff) | |
download | pam-88a4c5bf694602ae1ff3f7a96948c0648ee8f596.tar.gz pam-88a4c5bf694602ae1ff3f7a96948c0648ee8f596.tar.bz2 pam-88a4c5bf694602ae1ff3f7a96948c0648ee8f596.zip |
Document pam_limits change in news
-rw-r--r-- | debian/libpam-modules.NEWS | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/debian/libpam-modules.NEWS b/debian/libpam-modules.NEWS index edd12051..6d26b019 100644 --- a/debian/libpam-modules.NEWS +++ b/debian/libpam-modules.NEWS @@ -1,3 +1,21 @@ +pam (1.7.0-1) unstable; urgency=medium + + Starting with pam 1.7.0, pam_limits does not automatically reset the + limits of logged in users. This means that systemd, rather than pam ill + set the defaults for things like number of open files and other resource + limits. If limits are configured in /etc/security/limits.conf or + /etc/security/limits.d/*.conf, these values will be respected. To + restore the previous behavior, add the set_all option to pam_limits. + For example in /etc/pam.d/ssh, replace: + + session required pam_limits.so + + with: + + session required pam_limits.so set_all + + -- Sam Hartman <hartmans@debian.org> Tue, 14 Jan 2025 15:47:56 -0700 + pam (1.5.3-7) unstable; urgency=medium Starting with PAM version 1.5.3, Debian supports usergroups for default @@ -13,4 +31,3 @@ pam (1.5.3-7) unstable; urgency=medium -- Sam Hartman <hartmans@debian.org> Mon, 08 Apr 2024 16:15:58 -0600 - |