mirror of
https://github.com/openzfs/zfs.git
synced 2025-10-01 02:46:29 +00:00

This commit synchronizes the debian packaging files with the distro version (also maintained by me) as much as possible. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Colm Buckley <colm@tuatha.org> Signed-off-by: Shengqi Chen <harry-chen@outlook.com> Closes #17712
9 lines
177 B
Bash
9 lines
177 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if ! $(ldd "/usr/lib/$(dpkg-architecture -qDEB_HOST_MULTIARCH)/security/pam_zfs_key.so" | grep -q "libasan") ; then
|
|
pam-auth-update --package
|
|
fi
|
|
|
|
#DEBHELPER#
|