config is in ipplan 4.92a-2.
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 | #!/bin/bash
set -e
action=$1
version=$2
# Source debconf library.
. /usr/share/debconf/confmodule
db_version 2.0 || [ 0 -lt 30 ]
db_input medium ipplan/webserver_type || true
db_go || true
db_set ipplan/mysql/configure true
db_input medium ipplan/mysql/configure || true
db_go || true
db_get ipplan/mysql/configure || true
if [ "$RET" = "true" ]; then
if [ "$1" = "configure" ] && [ -z "$2" ] || [ "$1" = "reconfigure" ]; then
db_input critical ipplan/mysql/dbserver || true
db_input critical ipplan/mysql/dbadmin || true
db_input critical ipplan/mysql/dbadmpass || true
db_input critical ipplan/mysql/dbuser || true
db_input critical ipplan/mysql/dbpass || true
db_input medium ipplan/purge || true
db_input medium ipplan/mysql/dbname || true
db_go || true
fi
fi
|