config is in gcl 2.6.7-98.
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 | #!/bin/sh
CONFIGFILE=/etc/default/gcl
set -e
. /usr/share/debconf/confmodule
# Load config file, if it exists.
if [ -e $CONFIGFILE ]; then
. $CONFIGFILE || true
# Store values from config file into
# debconf db.
db_set gcl/default_gcl_ansi $DEFAULT_GCL_ANSI
db_set gcl/default_gcl_prof $DEFAULT_GCL_PROF
fi
# Ask questions.
db_input medium gcl/default_gcl_ansi || true
db_input medium gcl/default_gcl_prof || true
db_go || true
|