config is in man2html 1.6g-8.
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
# vim: ts=4:sw=4:et
set -e
[ -r /usr/share/debconf/confmodule ] || exit 0
. /usr/share/debconf/confmodule
if which index++ > /dev/null && [ ! -e /var/cache/man2html/man2html.swish++.index ]; then
db_input low man2html/index_manpages || true
db_go || true
fi
|