config is in man2html 1.6g-6.
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 | #!/bin/sh
# $Id: man2html.config 241 2011-01-09 20:55:40Z robert $
set -e
[ -r /usr/share/debconf/confmodule ] || exit 0
. /usr/share/debconf/confmodule
if [ -x /usr/bin/index++ ] && ! [ -e /var/cache/man2html/man2html.swish++.index ]; then
db_input low man2html/index_manpages || true
db_go || true
fi
|