postinst is in libpam-passwdqc 1.3.0-1build1.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/sh
# Copyright © 2010 Martin F. Krafft <madduck@debian.org>
# Released under the terms of the Artistic Licence 2.0
#
set -eu
pam-auth-update --package passwdqc
# See #369953
set +u
set -u
|