config is in krb5-kdc 1.16-2build1.
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 | #!/bin/sh
set -e
. /usr/share/debconf/confmodule
db_version 2.0
db_input low krb5-kdc/debconf || true
db_go
db_get krb5-kdc/debconf
if [ x"$RET" = xtrue ] ; then
if [ -f "/etc/default/krb5-kdc" ] ; then
. /etc/default/krb5-kdc
fi
fi
|