summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--debian/changelog6
-rwxr-xr-xdebian/libpam-lastlog2.prerm2
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 7811be9..17d19e5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+util-linux (2.40.1-8) unstable; urgency=medium
+
+ * libpam-lastlog2: fix incorrect removal of PAM config
+
+ -- Chris Hofstaedtler <zeha@debian.org> Mon, 03 Jun 2024 17:03:37 +0200
+
util-linux (2.40.1-7~progress7.99u1) graograman-backports; urgency=medium
* Uploading to graograman-backports, remaining changes:
diff --git a/debian/libpam-lastlog2.prerm b/debian/libpam-lastlog2.prerm
index 218f2ee..d35853f 100755
--- a/debian/libpam-lastlog2.prerm
+++ b/debian/libpam-lastlog2.prerm
@@ -2,7 +2,7 @@
set -e
if [ "$1" = remove ] && [ "${DPKG_MAINTSCRIPT_PACKAGE_REFCOUNT:-1}" = 1 ]; then
- pam-auth-update --package --remove wtmpdb
+ pam-auth-update --package --remove lastlog2
fi
#DEBHELPER#