postrm 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 23 24 25 26 27 28 29 30 | #!/bin/sh
set -e
case "$1" in
remove)
rm -f /etc/modprobe.d/blacklist-oss.conf
rm -f /etc/modprobe.d/blacklist-oss
rm -f /etc/modprobe.d/blacklist-alsa.conf
rm -f /etc/modprobe.d/blacklist-alsa
rm -f /etc/hotplug/blacklist.d/linux-sound-base_noOSS
rm -f /etc/discover.d/linux-sound-base_noOSS
rm -f /etc/modutils/linux-sound-base_noOSS
rm -f /etc/modprobe.d/linux-sound-base_noOSS
rm -f /etc/modprobe.d/linux-sound-base_noOSS.conf
rm -f /etc/hotplug/blacklist.d/linux-sound-base_noALSA
rm -f /etc/discover.d/linux-sound-base_noALSA
rm -f /etc/modutils/linux-sound-base_noALSA
rm -f /etc/modprobe.d/linux-sound-base_noALSA
rm -f /etc/modprobe.d/linux-sound-base_noALSA.conf
rm -f /etc/discover.conf.d/10linux-sound-base
;;
esac
# Automatically added by dh_installdebconf
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
db_purge
fi
# End automatically added section
|