File: postrm

package info (click to toggle)
alsa-driver 0.9%2B0beta12-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,524 kB
  • ctags: 29
  • sloc: sh: 982; makefile: 283
file content (11 lines) | stat: -rw-r--r-- 274 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh -e

if [ $1 = "purge" ]; then
		
	if [ -f /etc/sound/asound.conf ]; then rm -f /etc/sound/asound.conf ; fi
	if [ -d /etc/sound ]; then rmdir /etc/sound 2> /dev/null || true; fi
        [ -x /usr/sbin/update-devfsd ] && /usr/sbin/update-devfsd >&2

fi

#DEBHELPER#