config is in libpam-radius-auth 1.3.17-0ubuntu3.
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 13 14 15 16 17 18 19 20 21 22 | #!/bin/sh
action=$1
version=$2
# Source debconf library.
. /usr/share/debconf/confmodule
db_version 2.0
if [ -n "$version" ] && dpkg --compare-versions "$version" lt 1.3.16-1.1 && [ `find /etc/pam_radius_auth.conf -printf %m 2> /dev/null` = '644' ]
then
db_input low libpam-radius-auth/fixperms
db_go
db_get libpam-radius-auth/fixperms
if [ "$RET" != "false" ]; then
db_text critical libpam-radius-auth/permnote
db_go
fi
fi
exit 0
|