config is in libdspam7-drv-mysql 3.10.1+dfsg-4ubuntu1.
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 | #!/bin/sh
#
# Configure mysql database.
set -e
# Load debconf
. /usr/share/debconf/confmodule
# The questions that are asked are pretty important.
export DEBIAN_PRIORITY=low
dbc_dbuser="dspam"
dbc_dbname="dspam"
if [ -f /usr/share/dbconfig-common/dpkg/config.mysql ]; then
# Load dbconfig
. /usr/share/dbconfig-common/dpkg/config.mysql
# Run dbconfig
dbc_go libdspam7-drv-mysql $@
fi
exit 0
|