postinst 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 23 24 25 26 27 28 29 30 31 32 33 | #!/bin/sh
set -e
package=namazu2
. /usr/share/debconf/confmodule
CFG=/etc/namazu/cgidirs
if [ "$1" = "configure" ]; then
db_get namazu2/install
PLACE=$RET
echo $PLACE > $CFG
if [ ! -z "$PLACE" -a "x$PLACE" != "x" ]; then
for d in $PLACE; do
echo "copying to $d ..."
if [ ! -d $d ]; then
install -d $d
fi
cp -a /usr/lib/cgi-bin/namazu.cgi $d/
done
fi
fi
# Automatically added by dh_installemacsen
if [ "$1" = "configure" ] && [ -x /usr/lib/emacsen-common/emacs-package-install ]
then
/usr/lib/emacsen-common/emacs-package-install namazu2
fi
# End automatically added section
|