config is in libwiki-toolkit-perl 0.83-1.
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 | #!/bin/sh
# config maintainer script for libwiki-toolkit-perl
set -e
# source debconf stuff
. /usr/share/debconf/confmodule
if [ -n "$2" ]; then
if dpkg --compare-versions "$2" lt 0.76-1; then
db_input high libwiki-toolkit-perl/schema_upgrade_warn || true
db_go
db_get libwiki-toolkit-perl/schema_upgrade_warn || true
if [ "$RET" = "false" ]; then
echo "Aborting install";
db_fset libwiki-toolkit-perl/schema_upgrade_warn seen false
exit 1
fi
if [ -d /usr/share/libwiki-toolkit-perl/upgrade-hooks ]; then
db_input high libwiki-toolkit-perl/schema_upgrade_auto || true
db_go
fi
fi
fi
|