config is in gom 0.30.2-6.
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 | #!/bin/sh -e
. /usr/share/debconf/confmodule
CONFFILE="/etc/default/gom"
if [ -e "${CONFFILE}" ]; then
. "${CONFFILE}" || true
[ -z "${auto_init}" ] || db_set gom/auto_init "${auto_init}"
[ -z "${valid_sound_devices}" ] || db_set gom/valid_sound_devices "${valid_sound_devices}"
fi
db_input medium gom/auto_init || true
db_input low gom/valid_sound_devices || true
db_go || true
|