config is in namazu2 2.0.21-3.
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/bash
package=namazu2
set -e
. /usr/share/debconf/confmodule
db_title "Configuring Namazu package"
PLACE=""
if [ -f /etc/namazu/cgidirs ]; then
PLACE=`cat /etc/namazu/cgidirs`
fi
#if [ ! -z $PLACE -o ! "x$PLACE" = "x" ]; then
db_set $package/install "$PLACE"
#fi
db_input medium $package/install || true
db_go || true
|