postrm (358B)
1 #!/bin/sh 2 3 set -e 4 5 case "$1" in 6 purge) 7 # Remove legacy config and state files 8 rm -f /etc/alsa/0.9/asound.conf /etc/asound.state 9 # Remove configuration file generated by alsaconf 10 rm -f /etc/modprobe.d/sound /etc/modutils/sound \ 11 /etc/modprobe.d/sound.conf 12 # Remove state file generated by alsactl 13 rm -f /var/lib/alsa/asound.state 14 ;; 15 esac 16 17 #DEBHELPER#