config is in linux-sound-base 1.0.25+dfsg-0ubuntu4.
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 | #!/bin/sh
set -e
. /usr/share/debconf/confmodule
db_version 2.0
if \
[ -f /etc/modprobe.d/blacklist-oss.conf ] \
&& [ ! -f /etc/modprobe.d/blacklist-alsa.conf ]
then
db_set linux-sound-base/sound_system ALSA || :
elif \
[ ! -f /etc/modprobe.d/blacklist-oss.conf ] \
&& [ -f /etc/modprobe.d/blacklist-alsa.conf ]
then
db_set linux-sound-base/sound_system OSS || :
fi
db_input low linux-sound-base/sound_system || :
db_go || :
db_stop || :
|