config is in fortunes-fr 0.65+nmu2.
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/sh
# fortunes-fr configuration script
# Source debconf library -- we have a Depends line
# to make sure it is there...
. /usr/share/debconf/confmodule
db_version 2.0
if [ "$1" = configure -o "$1" = reconfigure ] ; then
if dpkg --compare-versions "$2" lt-nl 0.54; then
db_fget fortunes-fr/fortunes_to_install upgradeto0.54
if [ "$RET" = false ]; then
db_fset fortunes-fr/fortunes_to_install upgradeto0.54 true
db_fset fortunes-fr/fortunes_to_install seen false
fi
fi
fi
db_input medium fortunes-fr/fortunes_to_install || true
db_go
exit 0
|