config is in lcl-utils-1.8 1.8.2+dfsg-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 | #! /bin/sh
set -e
# Load debconf
. /usr/share/debconf/confmodule
CFG_DIR='/etc/lazarus'
if test -e "${CFG_DIR}" && ! test -L "${CFG_DIR}"
then
db_input high lcl-utils-1.8/rename_cfg || test $? -eq 30
db_go
fi
# Debhelper code
|