mirror of
https://github.com/Kicksecure/security-misc.git
synced 2024-10-01 08:25:45 -04:00
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:
parent
e543c4bf82
commit
91fb21aafb
4
debian/security-misc.postinst
vendored
4
debian/security-misc.postinst
vendored
@ -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
48
debian/security-misc.prerm
vendored
Normal 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
|
Loading…
Reference in New Issue
Block a user