config is in gnats-user 4.1.0-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 | #!/bin/bash -e
. /usr/share/debconf/confmodule
SITE=$(hostname -f)
SITE=${SITE#*.}
SITE=${SITE%%.*}
# db_subst should be here instead of db_set, but db_subst apparently doesn't
# work for default values.
db_set gnats/site "${SITE}"
db_input medium gnats/site || true
db_go
|