Due to error:

Jul 07 20:35:39 host sudo[16090]: PAM unable to dlopen(pam_cgfs.so): /lib/security/pam_cgfs.so: cannot open shared object file: No such file or directory
Jul 07 20:35:39 host sudo[16090]: PAM adding faulty module: pam_cgfs.so

run:
pam-auth-update --package
from Debian maintainer scripts
This commit is contained in:
Patrick Schleizer 2019-07-07 16:51:40 -04:00
parent e543c4bf82
commit 91fb21aafb
No known key found for this signature in database
GPG Key ID: CB8D50BB77BB3C48
2 changed files with 52 additions and 0 deletions

View File

@ -29,6 +29,10 @@ case "$1" in
;;
esac
## Jul 07 20:35:39 host sudo[16090]: PAM unable to dlopen(pam_cgfs.so): /lib/security/pam_cgfs.so: cannot open shared object file: No such file or directory
## Jul 07 20:35:39 host sudo[16090]: PAM adding faulty module: pam_cgfs.so
pam-auth-update --package
true "INFO: debhelper beginning here."
#DEBHELPER#

48
debian/security-misc.prerm vendored Normal file
View File

@ -0,0 +1,48 @@
#!/bin/bash
## Copyright (C) 2012 - 2018 ENCRYPTED SUPPORT LP <adrelanos@riseup.net>
## See the file COPYING for copying conditions.
if [ -f /usr/lib/helper-scripts/pre.bsh ]; then
source /usr/lib/helper-scripts/pre.bsh
fi
set -e
true "
#####################################################################
## INFO: BEGIN: $DPKG_MAINTSCRIPT_PACKAGE $DPKG_MAINTSCRIPT_NAME $@
#####################################################################
"
## pam-auth-update is usually used in postinst and prerm.
#grep -r -l pam-auth-update /var/lib/dpkg/info
# /var/lib/dpkg/info/libpam-runtime.postinst
# /var/lib/dpkg/info/libpam-runtime.prerm
# /var/lib/dpkg/info/libpam-cap:amd64.postinst
# /var/lib/dpkg/info/libpam-cap:amd64.prerm
# /var/lib/dpkg/info/libpam-systemd:amd64.postinst
# /var/lib/dpkg/info/libpam-systemd:amd64.prerm
# /var/lib/dpkg/info/libpam-cgfs.postinst
# /var/lib/dpkg/info/libpam-cgfs.prerm
# /var/lib/dpkg/info/libpam-gnome-keyring:amd64.postinst
# /var/lib/dpkg/info/libpam-gnome-keyring:amd64.prerm
## Jul 07 20:35:39 host sudo[16090]: PAM unable to dlopen(pam_cgfs.so): /lib/security/pam_cgfs.so: cannot open shared object file: No such file or directory
## Jul 07 20:35:39 host sudo[16090]: PAM adding faulty module: pam_cgfs.so
pam-auth-update --package
true "INFO: debhelper beginning here."
#DEBHELPER#
true "INFO: Done with debhelper."
true "
#####################################################################
## INFO: END : $DPKG_MAINTSCRIPT_PACKAGE $DPKG_MAINTSCRIPT_NAME $@
#####################################################################
"
## Explicitly "exit 0", so eventually trapped errors can be ignored.
exit 0