config is in icecc 0.9.7-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 26 27 | #!/bin/sh
# icecc package configuration script
set -e
# configure some variables
CONFIGFILE=/etc/default/icecc
# source debconf stuff
. /usr/share/debconf/confmodule
db_version 2.0
# source configuration file if exists
if [ -e $CONFIGFILE ]; then
. $CONFIGFILE || true
# set configuration file values in debconf database
db_set icecc/daemon "$START_ICECC"
db_set icecc/scheduler "$START_ICECC_SCHEDULER"
fi
# ask questions
db_input medium icecc/daemon || true
db_input medium icecc/scheduler || true
db_go || true
exit 0
|