summaryrefslogtreecommitdiffstats
path: root/audio/linux-f10-alsa-plugins-oss/pkg-deinstall
blob: 22b3172b23f6fd31ac86b7cea8c4fbe64150c5ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

case "$2" in
	POST-DEINSTALL)
		conf=${PKG_PREFIX}/etc/asound.conf
		if [ ! -f "$conf" ]; then
			exit 1
		fi
		grep -v '/etc/alsa/pcm/pcm-oss\.conf' <$conf >/tmp/asound.conf.new
		;;
	*)
		exit 0
		;;
esac

exit 0
OpenPOWER on IntegriCloud